#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
What is huge pointer in c?
In C programming, what command or code can be used to determine if a number of odd or even?
In C language, a variable name cannot contain?
Difference between malloc() and calloc() function?
Explain the use of #pragma exit?
Write a Program to find whether the given number or string is palindrome.
How can I delete a file?
What is pointer to pointer in c?
How do I determine whether a character is numeric, alphabetic, and so on?
How do you define structure?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
What is the purpose of type declarations?
Which header file is used for clrscr?
What is merge sort in c?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.