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 |
AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?
Magic square
What is memory leak in c?
Write any data structure program (stack implementation)
What is the purpose of & in scanf?
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason
Which is better between malloc and calloc?
what does " calloc" do?
Is anything faster than c?
write an algorithm to get a sentence and reverse it in the following format: input : I am here opuput: Here Am I note: first letter of every word is capiatlised
What are the different types of data structures in c?
What is the difference between procedural and functional programming?