What’s the special use of UNIONS?
No Answer is Posted For this Question
Be the First to Post Answer
Is int a keyword in c?
what is difference b/w extern & volatile variable??
Explain how can I prevent another program from modifying part of a file that I am modifying?
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
What is the scope of static variable in c?
What is the difference b/w Structure & Union?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
what is a stack
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
What is the difference between exit() and _exit()?
What is the difference between class and object in c?
Explain how do you use a pointer to a function?