Prepare for your Next Interview
This is a discussion on printf used along with sleep within the Unix/Linux forums, part of the Operating Systems category; When I was doing unix programming in C (producer consumer pblm ). I found a strange thing that if 'printf' was used along with 'sleep' then the 'printf' statement wont execute...? ...
|
|||
|
printf used along with sleep
When I was doing unix programming in C (producer consumer pblm ). I found a strange thing that if 'printf' was used along with 'sleep' then the 'printf' statement wont execute...?
Can anybody tell me what is the problem....or Do these to have any connection with each other..? |
| Sponsored Links |
|
|||
|
Re: printf used along with sleep
You can very well use printf along with sleep. An example of this usage is given below:
if ((fp=fopen(argv[1], "r+"))==NULL) { printf("Error: In reading File!"); sleep(1); exit(1); } The above will print the error as Error: In reading File! and wait or delay for 1 second and then exit from the program. Let me know how you have used so that I can help you more on this. |
![]() |
|
| Thread Tools | |
| Display Modes | |
|
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Printtextscreen and printf | fred | C and C++ | 1 | 07-13-2006 09:52 PM |
| Heard about different forms of printf and scanf | joel | C and C++ | 3 | 06-29-2006 01:26 PM |