int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}};

int *p=&a;

printf(“%d”,*(*(x+1)+3));

Answers were Sorted based on User's Feedback



int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(“%d”,*(*(x+..

Answer / e

a instead of x then answer would be 5

Is This Answer Correct ?    4 Yes 2 No

int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(“%d”,*(*(x+..

Answer / vijay r15

error

Bcoz there is no initialization for x

With thanks and regards
Vijay r15
raj.vijay55@gmail.com

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More C Interview Questions

How can I handle floating-point exceptions gracefully?

0 Answers  


write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays

0 Answers   IBM,


Which node is more powerful and can handle local information processing or graphics processing?

0 Answers  


write a program to read a number and print in words that is in sentence for example 21,219 then output is "twenty one thousand and two hundred nineteen" by using only control flow statements (only loops and switch case )?

1 Answers   TCS,


how to get starting address of a running C program

3 Answers  






Can the size of an array be declared at runtime?

0 Answers  


What is meant by realloc()?

0 Answers  


How do you use a pointer to a function?

0 Answers  


Write a program that an operator and two operands read from input operand operator on the implementation and results display.

0 Answers  


what is the difference between strcpy() and memcpy() function?

2 Answers  


What is variable declaration and definition in c?

0 Answers  


In a switch statement, explain what will happen if a break statement is omitted?

0 Answers  


Categories