What is the scope of an external variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
how can i calculate mean,median,mode by using c program
Which is the memory area not included in C program? give the reason
How can a program be made to print the name of a source file where an error occurs?
what is the disadvantage of using macros?
What is the use of volatile?
What is the meaning of c in c language?
Write code for initializing one dimentional and two dimentional array in a C Program?
5 Answers Deshaw, Edutech, GMD,
let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................
I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.
Write a C++ program without using any loop (if, for, while etc) to print numbers from 1 to 100 and 100 to 1;
18 Answers Accenture, Cisco, Egentec, HCL, Ideaz, Infosys, M-Systems, MYR, TCS,
What is the difference between calloc() and realloc()?