#include<stdio.h>
int main()
{
int i=2;
int j=++i + ++i + i++;
printf("%d\n",i);
printf("%d\n",j);
}
Answer Posted / gaurav
5
12
| Is This Answer Correct ? | 35 Yes | 14 No |
Post New Answer View All Answers
explain what is an endless loop?
What is bash c?
What is the difference between ++a and a++?
What is structure pointer in c?
How can I recover the file name given an open stream or file descriptor?
What are the differences between new and malloc in C?
Write a program to swap two numbers without using third variable in c?
What are the standard predefined macros?
What does 3 mean in texting?
Explain bit masking in c?
what is a function method?give example?
What is the role of && operator in a program code?
what is event driven software and what is procedural driven software?
All technical questions
What is calloc malloc realloc in c?