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
Explain do array subscripts always start with zero?
What does malloc () calloc () realloc () free () do?
What is sizeof int?
What are the two types of structure?
What is the total generic pointer type?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
Explain the Difference between the New and Malloc keyword.
How many types of sorting are there in c?
What is difference between arrays and pointers?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
What is a lvalue
Write a program to print ASCII code for a given digit.
What is a node in c?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.