what will be the output of this program........
main()
{
int a=2,b=4,c=6;
printf("%d");
}
why it gives the value of third variable.
Answer Posted / biren
6
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
Explain what’s a signal? Explain what do I use signals for?
What is the scope of global variable in c?
What is #define in c?
Why is it that not all header files are declared in every C program?
What are the string functions? List some string functions available in c.
Why is void main used?
What are reserved words?
What do you mean by recursion in c?
How many data structures are there in c?
What is function definition in c?
What is the use of gets and puts?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
What is modifier & how many types of modifiers available in c?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.