What is calloc() function?
No Answer is Posted For this Question
Be the First to Post Answer
What are valid operations on pointers?
Explain the use of keyword 'register' with respect to variables.
How does sizeof know array size?
what is the self-referential structure?
wat are the two methods for swapping two numbers without using temp variable??
How many types of operators are there in c?
all c language question
Differentiate fundamental data types and derived data types in C.
What does node * mean?
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
How can I call fortran?
Dont ansi function prototypes render lint obsolete?