What are multibyte characters?


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

Post New Answer

More C Interview Questions

hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm

0 Answers   TCS,


please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com

0 Answers  


What is the purpose of ftell?

0 Answers  


How many identifiers are there in c?

0 Answers  


How to set file pointer to beginning c?

0 Answers  






What is the difference between new and malloc functions?

0 Answers   InterGraph,


What is d scanf?

0 Answers  


what is the difference between getch() and getche()?

7 Answers   Infosys,


1. main() { printf("%d",printf("HelloSoft")); } Output?

3 Answers   HCL,


#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100

1 Answers  


what is the difference between structure and union?

3 Answers  


enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }

4 Answers   ME,


Categories