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 file in c language?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
What are the different types of pointers used in c language?
What are formal parameters?
How do I use strcmp?
Write a program to swap two numbers without using a temporary variable?
Write a program to check armstrong number in c?
What is ctrl c called?
Is c is a low level language?
How can I recover the file name given an open stream or file descriptor?
What is difference between array and pointer in c?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
please send me the code for multiplying sparse matrix using c
What are the 5 organizational structures?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.