Answer Posted / raj
ans.
d*d will be replaced by 10+10*10+10
during runtime.
so answer is 10+100+10 = 120
| Is This Answer Correct ? | 89 Yes | 0 No |
Post New Answer View All Answers
What is a void pointer? When is a void pointer used?
What is a pointer in c plus plus?
What is difference between stdio h and conio h?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is the scope of global variable in c?
How can I make it pause before closing the program output window?
What is the use of getchar() function?
How can I manipulate strings of multibyte characters?
What is calloc()?
What are data types in c language?
difference between native and cross compilers
What is a char in c?
Do pointers need to be initialized?
Why do we use return in c?
write a programming in c to find the sum of all elements in an array through function.