What is the use of extern in c?
No Answer is Posted For this Question
Be the First to Post Answer
How important is structure in life?
main() { printf("hello"); fork(); }
what is the basis for selection of arrays or pointers as data structure in a program
why i join syntel?
23 Answers ABC, Syntel, TCS,
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What are the key features of C?
When should the register modifier be used? Does it really help?
What is a static function in c?
what is c programing
#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 is the format specifier for printing a pointer value?
write a program to display the array elements in reverse order in c language