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 |
1.Why do you call C is middle level language? 2.Why do you call C is userfriendly language.
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
Differentiate between new and malloc(), delete and free() ?
differentiate between const char *a; char *const a; and char const *a;
2 Answers College School Exams Tests, HCL, TCS,
Can we access the array using a pointer in c language?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
In c programming language, how many parameters can be passed to a function ?
What is the modulus operator?
what are far pointers?
what is the use of operator ^ in C ? and how it works?
why return type of main is not necessary in linux
What is the heap?