what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answer Posted / raj
It Will print garbage value i.e.
-113
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Explain what is the best way to comment out a section of code that contains comments?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is assignment operator?
Are pointers integer?
Are the expressions * ptr ++ and ++ * ptr same?
What is modifier & how many types of modifiers available in c?
What is the use of c language in real life?
What are the types of type specifiers?
Does c have function or method?
What is array in c with example?
Why is sprintf unsafe?
Write a C program in Fibonacci series.
How do you write a program which produces its own source code as output?
Is calloc better than malloc?
Tell me the use of bit field in c language?