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 |
can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?
Explain what is the advantage of a random access file?
Explain heap and queue.
What ios diff. Between %e & %f?
What is the use of the restrict keyword?
while running a program, i got the msg that press return key to exit.what that mean in C as there are no such options as far i know.
get any number as input except 1 and the output will be 1.without using operators,expressions,array,structure.don't print 1 in printf statement
I heard that you have to include stdio.h before calling printf. Why?
Array is an lvalue or not?
What is the acronym for ansi?
What is new line escape sequence?
What are the header files used in c language?