What are multibyte characters?
No Answer is Posted For this Question
Be the First to Post Answer
What is the main difference between calloc () and malloc ()?
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
Write a program that his output * *** *****
to get a line of text and count the number of vowels in it
how can i get the string which is having two spaces at the end.suppose the string is "Hello World ".Now at the end i have two spaces.i need to print with that spaces .
difference between the array and linked list general difference related to memory
Explain is it better to bitshift a value than to multiply by 2?
What is a pointer value and address in c?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
to convert a string without using decrement operater and string functions
What is main () in c language?
what is diffrence between string and character array?