what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answer Posted / mishra
it will give garbage value as output
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What's the total generic pointer type?
Is c object oriented?
Whats s or c mean?
Why c is faster than c++?
What will the preprocessor do for a program?
How do you determine the length of a string value that was stored in a variable?
Why c is known as a mother language?
How are structure passing and returning implemented?
How was c created?
Why clrscr is used in c?
what is the difference between 123 and 0123 in c?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What is a constant and types of constants in c?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
How a string is stored in c?