main()
{
int a[10];
printf("%d",*a+1-*a+3);
}
Answers were Sorted based on User's Feedback
Answer / rameshp
ans is 4.
bec
*a+1-*a+3= 4 +*a,-*a ll be cancel....so ans s 4...
| Is This Answer Correct ? | 49 Yes | 3 No |
WHAT IS C?
Write programs for String Reversal & Palindrome check
What is auto keyword in c?
What is a nested loop?
what do the 'c' and 'v' in argc and argv stand for?
What is mean by data types in c?
What is a volatile keyword in c?
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
find largest of 3 no
What is abstract data structure in c?
Why main is not a keyword in c?
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15