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
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
In a byte, what is the maximum decimal number that you can accommodate?
What is pointer to pointer in c language?
Why do we need functions in c?
What are the key features in c programming language?
Explain how can I right-justify a string?
Explain threaded binary trees?
What is cohesion and coupling in c?
What are valid operations on pointers?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
How can you restore a redirected standard stream?
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
write a program to generate address labels using structures?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
What is bubble sort technique in c?