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
What is volatile variable how do you declare it?
What is self-referential structure in c programming?
What are the header files used in c language?
Can a pointer be volatile in c?
What is a rvalue?
Explain why can’t constant values be used to define an array’s initial size?
Is c language still used?
What is the general form of #line preprocessor?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
Mention four important string handling functions in c languages .
When should a far pointer be used?
Is it possible to execute code even after the program exits the main() function?
What is the use of ?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
Which header file is essential for using strcmp function?