int a=20;
int b=30;
int c=40;
printf("%d%d%d");
what will be the output?
Answer Posted / 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 |
Post New Answer View All Answers
Which is best book for data structures in c?
What happens if header file is included twice?
What is the difference between typedef struct and struct?
What is the difference between malloc() and calloc() function in c language?
Where does the name "C" come from, anyway?
How many keywords are there in c?
Explain how can I open a file so that other programs can update it at the same time?
Differentiate between Macro and ordinary definition.
Write a c program to demonstrate character and string constants?
What is scope rule of function in c?
What are the uses of null pointers?
What is hungarian notation? Is it worthwhile?
Sir i need notes for structure,functions,pointers in c language can you help me please
What are the types of type specifiers?
Is main an identifier in c?