char ch="{'H','I',0};printf("%s",ch);what is output
Answer Posted / vignesh1988i
first of all the character initilization itself will give an error. since 0 is not provided with single codes. if we neglect that error or we correct the above error. the final output will be 0
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is bubble sort technique in c?
What is sizeof in c?
What is main () in c language?
Do you have any idea about the use of "auto" keyword?
Are there any problems with performing mathematical operations on different variable types?
What is auto keyword in c?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
What is static memory allocation? Explain
What is the benefit of using an enum rather than a #define constant?
What is the stack in c?
Explain the difference between call by value and call by reference in c language?
Write the control statements in C language
code for find determinent of amatrix
Why is c called c?
Tell me when is a void pointer used?