praagnovation


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

Post New Answer

More C Interview Questions

#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?

2 Answers  


What are the rules for identifiers in c?

0 Answers  


proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?

7 Answers   Hughes,


What is the difference between far and near in c?

0 Answers  


what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }

7 Answers  






What is a static variable in c?

0 Answers  


Write a program to swap two numbers without using a temporary variable?

0 Answers   Infosys,


What is structure padding & expalain wid example what is bit wise structure?

1 Answers  


What functions are used for dynamic memory allocation in c language?

0 Answers  


Explain how can you tell whether a program was compiled using c versus c++?

0 Answers  


How to declare pointer variables?

0 Answers  


What is %d called in c?

0 Answers  


Categories