How can I manipulate strings of multibyte characters?


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

Post New Answer

More C Interview Questions

how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software

0 Answers  


Write a C program that defines a 2-dimentional integer array called A [50][50]. Then the elements of this array should randomly be initialized either to 1 or 0. The program should then print out all the elements in the diagonal (i.e. a[0][0], a[1][1],a[2][2], a[3][3], ……..a[49][49]). Finally, print out how many zeros and ones in the diagonal.

3 Answers   Infosys,


In a switch statement, explain what will happen if a break statement is omitted?

0 Answers  


What is function in c with example?

0 Answers  


write a program to rearrange the array such way that all even elements should come first and next come odd

0 Answers  






Do you know pointer in c?

0 Answers  


What is a structure member in c?

0 Answers  


write a c program to change only the 3rd bit of the particular number such that other bits are not affected.. if bitnum=10(say.. it can be any no..

10 Answers   Bosch, Mind Tree,


main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }

3 Answers  


What is string concatenation in c?

0 Answers  


Why the below program throughs error during compilation? #include<stdio.h> #include<conio.h> enum { ZERO, ONE, TWO, }; main() { printf("%d",&TWO); getch(); }

2 Answers  


what is a non volatile key word in c language?

1 Answers  


Categories