Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.8K
Ranked #4K
~932 People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for forestwwq

you stdout is likely line-buffered, meaning you should terminate the printf calls with a \n char OR fflush(stdout) after printing OR setbuf(stdout, NULL) before printing. but what youre doing is wrong because youre not allowed to call stdio functions from signal handlers since they are not reentrant. like, the interrupted …

Member Avatar for frk
0
347
Member Avatar for Salem

theres a mixup of different concepts here .function argument evaluation order isnt undefined but unspecified. only relying on any particular order is a mistake. for ex. in test1() the computed result is always the same cuz the return values are independent of order. the behavior of test1() is well defined …

Member Avatar for frk
4
585

The End.