what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answer Posted / sulagna samapika
what will be the output of printf("%d")
ans-
the outpot is 0
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the difference between far and near in c?
What does the format %10.2 mean when included in a printf statement?
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
Why cant I open a file by its explicit path?
how logic is used
If you know then define #pragma?
which is an algorithm for sorting in a growing Lexicographic order
What is the use of extern in c?
c language interview questions & answer
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
Why isn't it being handled properly?
What is memcpy() function?
How would you obtain the current time and difference between two times?
What are the usage of pointer in c?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }