Can you write the function prototype, definition and mention the other requirements.
No Answer is Posted For this Question
Be the First to Post Answer
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }
What is #define in c?
how could explain about job profile
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
What happens if a header file is included twice?
Why main is not a keyword in c?
Are local variables initialized to zero by default in c?
What does the format %10.2 mean when included in a printf statement?
can any one tel me wt is the question pattern for NIC exam
write a program to display all prime numbers
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
write a prgram of swapping with 2 valiables