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 |
Hai why 'c' is the middle language
What is the scope of local variable in c?
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
totally how much header files r in c language
What is the difference between big endian form and little endian form? write a code to convert big endian form to little endian and vice versa..
How can a process change an environment variable in its caller?
Why is malloc used?
what is the difference between call by value and call by reference?
5 Answers Genpact, Global Logic, Infosys,
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets
Which header file is essential for using strcmp function?
convert 12345 to 54321 withoutusing strig
What does %p mean c?