You must be logged in to post a comment.
You must be logged in to post a comment.
24. The following program main() { inc(); inc(); inc(); } inc() { static int x; printf("%d", ++x); }
You must be logged in to post a comment.
You must be logged in to post a comment.
25. The following program main() { int abc(); abc (); ( *abc) (); } int abc( ) { printf ("come"); }
You must be logged in to post a comment.
You must be logged in to post a comment.
You must be logged in to post a comment.