main()
{
int a[10];
printf("%d",*a+1-*a+3);
}
Answer / susie
Answer :
4
Explanation:
*a and -*a cancels out. The result is as simple as 1 + 3 = 4 !
| Is This Answer Correct ? | 4 Yes | 1 No |
Write a routine to implement the polymarker function
writte a c-programm to display smill paces
int i; main(){ int t; for ( t=4;scanf("%d",&i)-t;printf("%d\n",i)) printf("%d--",t--); } // If the inputs are 0,1,2,3 find the o/p
#define clrscr() 100 main() { clrscr(); printf("%d\n",clrscr()); }
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
void main() { int i=5; printf("%d",i++ + ++i); }
int a = 10 + 10 .... ,... A = A * A What would be the value of A? The answer is 120!! Could anyone explain this to me.
2 Answers Bosch, eInfochips, HCL, IHCL,
void main() { static int i; while(i<=10) (i>2)?i++:i--; printf(ā%dā, i); }
#define f(g,g2) g##g2 main() { int var12=100; printf("%d",f(var,12)); }
write a program to find out roots of quadratic equation "x=-b+-(b^2-4ac0^-1/2/2a"
main() { int *j; { int i=10; j=&i; } printf("%d",*j); }
write a c program to input initial & final time in the format hh:mm and find the time intervel between them? Ex inputs are initial 06:30 final 00:05 and 23:22 final 22.30