#include<stdio.h>
int main()
{
int i=2;
int j=++i + ++i + i++;
printf("%d\n",i);
printf("%d\n",j);
}
Answer Posted / lebin
value of i is 5
value of j is 12
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What are identifiers c?
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
Why c is called a mid level programming language?
What is string function c?
how should functions be apportioned among source files?
What is malloc and calloc?
What do you mean by dynamic memory allocation in c?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
Compare and contrast compilers from interpreters.
How can I dynamically allocate arrays?
What is static identifier?
If the size of int data type is two bytes, what is the range of signed int data type?
Can a pointer be static?
What is structure in c explain with example?
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.