char ch="{'H','I',0};printf("%s",ch);what is output
Answer Posted / vijay
h
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why & is used in c?
Once I have used freopen, how can I get the original stdout (or stdin) back?
Between macros and functions,which is better to use and why?
What does. int *x[](); means ?
Can a variable be both constant and volatile?
Can we change the value of constant variable in c?
regarding pointers concept
Explain high-order bytes.
Explain how can you avoid including a header more than once?
How is null defined in c?
What is the difference between call by value and call by reference in c?
how we can make 3d venturing graphics on outer interface
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
How can I find the modification date and time of a file?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.