char ch=10;printf("%d",ch);what is the output
Answer Posted / kalpana.y
There will be no output
because, in printf statement it is declared in %d
%d is integer variable
%s should be declared
| Is This Answer Correct ? | 0 Yes | 10 No |
Post New Answer View All Answers
How can I remove the trailing spaces from a string?
What is the general form of a C program?
Explain what is a stream?
Where is c used?
What is optimization in c?
What is the difference between arrays and pointers?
what is use of malloc and calloc?
What is chain pointer in c?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
FILE PROGRAMMING
Is stack a keyword in c?
What is const volatile variable in c?
Explain b+ tree?
How can I copy just a portion of a string?
What is string length in c?