int a=20;
int b=30;
int c=40;
printf("%d%d%d");
what will be the output?
Answers were Sorted based on User's Feedback
Answer / sangam khera
depending upon the compiler ....
IN TURBO C++ -> it will give an error a,b,c assigned a valued that is never used."
IN GCC(DEV C++)->it will give garbage value....
| Is This Answer Correct ? | 2 Yes | 0 No |
What are valid operations on pointers?
What is the explanation for prototype function in c?
what is self refrential structure
How can I insert or delete a line (or record) in the middle of a file?
How do I determine whether a character is numeric, alphabetic, and so on?
different between overloading and overriding
what is link list?
Write a C program to convert an integer into a binary string?
What does %f mean c?
What are the types of data files?
Is main an identifier in c?
what is a constant pointer in C