what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answer Posted / sadasiva
It gives compilation warning but not Error.
While running ,gives Run time check error and prints some
garbage value.
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
What does == mean in texting?
What is "Hungarian Notation"?
What is dangling pointer in c?
What is %g in c?
Why c is a procedural language?
Is c call by value?
What is storage class?
How can I write a function that takes a format string and a variable number of arguments?
Explain the use of bit fieild.
What's the difference between constant char *p and char * constant p?
Tell me is null always defined as 0(zero)?
What is %d called in c?
Does c have circular shift operators?
What is the use of a ‘ ’ character?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above