Explain what are multibyte characters?
No Answer is Posted For this Question
Be the First to Post Answer
Describe the modifier in c?
How a string is stored in c?
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????
Diff between for loop and while loop?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }
write a c program to accept a given integer value and print its value in words
4 Answers Vernalis, Vernalis Systems,
without a terminator how can we print a message in a printf () function.
What is the difference b/w Structure & Class?
How does struct work in c?
What is #include conio h?