what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answer Posted / bharath s
The answer is Garbage value...
The answer willbe lik -113...Depending upon the compailer
If we declare as..
static char ch;
Then Answer is 0.....
| Is This Answer Correct ? | 21 Yes | 0 No |
Post New Answer View All Answers
What is the translation phases used in c language?
Is c compiled or interpreted?
What is the use of static variable in c?
Explain the difference between the local variable and global variable in c?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
What is the use of pragma in embedded c?
Write a factorial program using C.
What is the sizeof () a pointer?
Write a program for finding factorial of a number.
pierrot's divisor program using c or c++ code
Between macros and functions,which is better to use and why?
What is memory leak in c?
Difference between macros and inline functions? Can a function be forced as inline?
Why is c so important?
Can we access array using pointer in c language?