what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answer Posted / shruti
it will print the ascii value of the characters..
or some garbage values..
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
How are pointers declared in c?
Which function in C can be used to append a string to another string?
Explain what are compound statements?
Which is better between malloc and calloc?
What is structure in c definition?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
What is type qualifiers?
Write a factorial program using C.
Why c is called procedure oriented language?
Explain what are reserved words?
What the different types of arrays in c?
Why is this loop always executing once?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?