#include<stdio.h>
int main()
{
int i=2;
int j=++i + ++i + i++;
printf("%d\n",i);
printf("%d\n",j);
}
Answer Posted / barathi
i=2
j=9
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What does nil mean in c?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
How can you increase the size of a statically allocated array?
What are formal parameters?
What is spark map function?
Why void main is used in c?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What is the function of multilevel pointer in c?
What are the primitive data types in c?
will u please send me the placement papers to my mail???????????????????
Differentiate fundamental data types and derived data types in C.
What is string in c language?
What are the different types of objects used in c?
When should a far pointer be used?