Average of a couple 10 years ago was 25. The average
remains same after having a child and twins after 3 years.
What is the present age of the first child
Answer Posted / surya
ans plz
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is the most efficient way to store flag values?
What is the size of enum in c?
How are variables declared in c?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
Describe the difference between = and == symbols in c programming?
Are c and c++ the same?
What are the header files used in c language?
What are lookup tables in c?
What is a wrapper function in c?
How can I read a binary data file properly?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What are directives in c?
How can I change their mode to binary?
Why is c not oop?