#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
Explain what are the different file extensions involved when programming in c?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
Explain union. What are its advantages?
Define Array of pointers.
Where is volatile variable stored?
Can we use any name in place of argv and argc as command line arguments?
What is linear search?
Why malloc is faster than calloc?
why we wont use '&' sing in aceesing the string using scanf
Why is C language being considered a middle level language?
Is it valid to address one element beyond the end of an array?
How can I remove the trailing spaces from a string?
differentiate built-in functions and user – defined functions.
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
Which function in C can be used to append a string to another string?