main()
{
int i=5,j=6,z;
printf("%d",i+++j);
}
Answers were Sorted based on User's Feedback
Answer / susie
Answer :
11
Explanation:
the expression i+++j is treated as (i++ + j)
| Is This Answer Correct ? | 50 Yes | 4 No |
Write a routine to implement the polymarker function
write a origram swaoing valu without 3rd variable
main() { extern int i; i=20; printf("%d",i); }
main() { unsigned int i=10; while(i-->=0) printf("%u ",i); }
plz send me all data structure related programs
union u { union u { int i; int j; }a[10]; int b[10]; }u; main() { printf("\n%d", sizeof(u)); printf(" %d", sizeof(u.a)); // printf("%d", sizeof(u.a[4].i)); } a. 4, 4, 4 b. 40, 4, 4 c. 1, 100, 1 d. 40 400 4
main() { extern out; printf("%d", out); } int out=100;
What is the difference between proc means and proc tabulate ? explain with a simple example when you have to use means or tabulate?
main() { int i; clrscr(); printf("%d", &i)+1; scanf("%d", i)-1; } a. Runtime error. b. Runtime error. Access violation. c. Compile error. Illegal syntax d. None of the above
Design an implement of the inputs functions for event mode
Derive expression for converting RGB color parameters to HSV values
hello sir,is there any function in C that can calculate number of digits in an int type variable,suppose:int a=123; 3 digits in a.what ll b answer?