Explain two-dimensional array.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?

9 Answers   BTBP, CitiGroup,


Are the expressions * ptr ++ and ++ * ptr same?

0 Answers  


What is the difference between near, far and huge pointers?

0 Answers  


Determine if a number is a power of 2 at O(1).

2 Answers  


Given an array A[n+m] of n+m numbers, where A[1] ... A[n] is sorted and A[n+1] ... A[n+m] is sorted. Design a linear time algorithm to obtain A[1...n+m] sorted using only O(1) extra space. Time Complexity of your algorithm should be O(n) and Space Complexity O(1).

0 Answers  






program to find the magic square

1 Answers   Infosys,


Write a program in c to input a 5 digit number and print it in words.

11 Answers  


What is the memory allocated by the following definition ? int (*x)[10];

4 Answers   ADITI, Wipro,


What is character constants?

0 Answers  


Why ca not I do something like this?

0 Answers  


Explain what does it mean when a pointer is used in an if statement?

0 Answers  


Write a program to generate prime factors of a given integer?

9 Answers   Microsoft,


Categories