Explain what are multibyte characters?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Describe the modifier in c?

0 Answers  


How a string is stored in c?

0 Answers  


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

8 Answers   IBM,


20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????

2 Answers  


Diff between for loop and while loop?

2 Answers   TCS,






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

0 Answers  


#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }

3 Answers   Zoho,


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.

7 Answers   NIIT,


What is the difference b/w Structure & Class?

3 Answers  


How does struct work in c?

0 Answers  


What is #include conio h?

0 Answers  


Categories