#include<stdio.h>
int main()
{
int i=2;
int j=++i + ++i + i++;
printf("%d\n",i);
printf("%d\n",j);
}
Answer Posted / tamil selvam
i value is 2.
j value is 7.
| Is This Answer Correct ? | 19 Yes | 9 No |
Post New Answer View All Answers
Write a program to reverse a string.
Explain what are the standard predefined macros?
What is extern keyword in c?
What does 4d mean in c?
What is a c token and types of c tokens?
What is the advantage of a random access file?
What is sizeof int in c?
What are shell structures used for?
What is c definition?
Can a variable be both const and volatile?
Explain what is the most efficient way to store flag values?
Write a code to generate a series where the next element is the sum of last k terms.
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
What is the acronym for ansi?
What are the data types present in c?