What is difference between array and structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what are the advantages and disadvantages of a heap?
what information does the header files contain?
6 Answers BSNL, Cisco, GDA Technologies,
What is the description for syntax errors?
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā%dā,s.x); }
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What is the significance of scope resolution operator?
0 Answers Agilent, ZS Associates,
Why c language is called c?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
#include<stdio.h> main(0 { printf("\n %d %d %d",sizeof(3),sizeof("3"),sizeof(3)); }
regarding the scope of the varibles;identify the incorrect statement: a.automatic variables are automatically initialised to 0 b.static variables are are automatically initialised to 0 c.the address of a register variable is not accessiable d.static variables cannot be initialised with any expression
What is the explanation for prototype function in c?
what is disadvantage of pointer in C