void main()
{
int i=5;
printf("%d",i++ + ++i);
}
Answer Posted / gajendra
1
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Is c procedural or object oriented?
What is main () in c language?
write a proram to reverse the string using switch case?
what are the different storage classes in c?
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.
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
Write a code to generate divisors of an integer?
What are the types of functions in c?
What is sizeof return in c?
What are register variables in c?
What is the value of uninitialized variable in c?
Is printf a keyword?
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
Why is a semicolon (;) put at the end of every program statement?
Explain what is the benefit of using #define to declare a constant?