What is extern storage class in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain Basic concepts of C language?
what is call by value and call by reference
What is the difference between call by value and call by reference in c?
Why do we need volatile in c?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
Can we initialize extern variable in c?
How can type-insensitive macros be created?
how the size of an integer is decided? - is it based on processor or compiler or OS?
19 Answers HCL, JPR, Microsoft, nvidia,
#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?
Explain the concept of "dangling pointers" in C.
Which weighs more, a gram of feathers or a gram of gold?
a simple c program using 'for' loop to display the output 5 4 3 2 1