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
How can you convert integers to binary or hexadecimal?
What are dangling pointers in c?
Is there a way to switch on strings?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
Where are c variables stored in memory?
Is anything faster than c?
When should a far pointer be used?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
Can we assign string to char pointer?
How can I insert or delete a line (or record) in the middle of a file?
how can use subset in c program and give more example
Compare and contrast compilers from interpreters.
Where does the name "C" come from, anyway?
Mention four important string handling functions in c languages .
explain what is an endless loop?