void main()
{
int i=5;
printf("%d",i+++++i);
}
Answer Posted / visu
hey sulochana hav u tried it in a compiler..
cuz for me the result for that is 12.
i+++++i might give u an error but for sure (i++ + ++i)=12
| Is This Answer Correct ? | 7 Yes | 5 No |
Post New Answer View All Answers
Write a program to reverse a linked list in c.
What is C language ?
What is a 'null pointer assignment' error?
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
Can we use visual studio for c?
Can a local variable be volatile in c?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
What is this infamous null pointer, anyway?
What are c header files?
In C language what is a 'dangling pointer'?
Write a program to find factorial of a number using recursive function.
What is the meaning of ?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
Can a function argument have default value?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.