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 / mallikharjuna
6 will come
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Define and explain about ! Operator?
What is define directive?
Whats s or c mean?
write a program to copy the string using switch case?
What is the collection of communication lines and routers called?
What is sizeof int?
What are preprocessor directives in c?
What is the explanation for the dangling pointer in c?
What is a lookup table in c?
What is a void * in c?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
to find the closest pair
Write a program to print “hello world” without using semicolon?
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?