praagnovation
No Answer is Posted For this Question
Be the First to Post Answer
#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?
What are the rules for identifiers in c?
proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?
What is the difference between far and near in c?
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); }
What is a static variable in c?
Write a program to swap two numbers without using a temporary variable?
What is structure padding & expalain wid example what is bit wise structure?
What functions are used for dynamic memory allocation in c language?
Explain how can you tell whether a program was compiled using c versus c++?
How to declare pointer variables?
What is %d called in c?