واضح آرشیو وب فارسی:سایت ریسک: چگونگی نوشتن تابع خروج از برنامه در زبان سی salehvasaleh 21 بهمن 1386, 16:10اگر بخوایم انتهای یه تابع کلی، تابعی رو بنویسیم که با انتخاب اون (مثلا انتخاب اون از طریق دستور سویش) بشه از کل تابع خارج بشیم باید چیکار کنیم؟ بطور کلی یعنی طرز نوشتن تابعی برای خروج در زبان سی چطوریه؟ the_king 21 بهمن 1386, 16:26فرمان return روال اجرای تابع را خاتمه می دهد، چه تابع مقدار بازگشتی داشته باشد و چه نداشته باشد. تابع ()exit اجرای برنامه را خاتمه می دهد. درصورتی که خاتمه برنامه بدون خطا است اصولا مقدار پارامتر ورودی آن صفر است. saalek110 21 بهمن 1386, 16:46پست را قبل از دیدن پست استاد گرامی فرستادم. ولی ادیت نمی کنم. ========================================= با سلام اگر منظور شما را درست متوجه شده باشم... این کار روشهای مختلفی دارد. یک راه را در زیر می گویم. تست شده با توربو سی 3 . کد: #include<stdio.h> #include<conio.h> #include<process.h> void record(); /************************************************** **************************************************/ void main() { clrscr(); printf("in the main"); record(); printf(" in the main after function call"); printf(" press any key for exit"); getch(); } /************************************************** ************************************************** **/ void record() { printf(" in the record_function press any key for exit"); getch(); exit(0); } شرح از help توربو سی 3 : exit terminates the program þ _cexit performs exit cleanup without terminating the program Declaration: þ void exit(int status); þ void _cexit(void); Remarks: exit terminates the calling process. Before termination, exit does the following: þ closes all files þ writes buffered output (waiting to be output) þ calls any registered "exit functions" (posted with atexit) _cexit performs the same cleanup as exit, except that it does not close files or terminate the calling process. _cexit restores interrupt vectors altered by the startup code. status ßßßßßß With exit, status is provided for the calling process as the exit status of the process. Typically a value of 0 indicates a normal exit, and a non-zero value indicates some error. You use the following to set status: status ³ Indicates ÍÍÍÍÍÍÍÍÍÍÍÍÍÍØÍÍÍÍÍÍÍÍÍÍ ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ EXIT_SUCCESS ³ Normal program termination EXIT_FAILURE ³ Abnormal program termination. Signal to operating ³ system that program has terminated with an error. Return Value: None Portability: É DOS Ñ UNIX Ñ ANSI C Ñ C++ Only » _cexit º Yes ³ ³ ³ º exit º Yes ³ Yes ³ Yes ³ º ÈÍÍÍÍÍÏÍÍÍÍÍÍÏÍÍÍÍÍÍÍÍÏÍÍ ÍÍÍÍÍÍÍͼ
این صفحه را در گوگل محبوب کنید
[ارسال شده از: سایت ریسک]
[مشاهده در: www.ri3k.eu]
[تعداد بازديد از اين مطلب: 7159]