char ch="{'H','I',0};printf("%s",ch);what is output
Answer Posted / vaibhav
it gives an error becoz of " .
if we ignore him then o/p will be HI .
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Do character constants represent numerical values?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
What is function and its example?
What is s in c?
When should we use pointers in a c program?
Explain how do you use a pointer to a function?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
What are called c variables?
What are qualifiers and modifiers c?
What does the c preprocessor do?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
Explain what are the standard predefined macros?
given post order,in order construct the corresponding binary tree
What is the value of a[3] if integer a[] = {5,4,3,2,1}?