What is #include stdio h and #include conio h?
No Answer is Posted For this Question
Be the First to Post Answer
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
How do you define structure?
Explain how do you list files in a directory?
How to find the usage of memory in a c program
how does printf function work
write a program in c language to print your bio-data on the screen by using functions.
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
What is the difference between volatile and const volatile?
write a program to concatenation the string using switch case?
write a c program to remove all the duplicate characters in a string and replace with single character? ex:-input- AAABBBCCC output- ABC
What is meant by 'bit masking'?
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case