What is size of union in c?
No Answer is Posted For this Question
Be the First to Post Answer
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
int a=2,b=3,c=4; printf("a=%d,b=%d\n",a,b,c); what is the o/p?
What are dangling pointers in c?
What is an example of structure?
With the help of using classes, write a program to add two numbers.
Can we replace the struct function in tree syntax with a union?
write a program to create a sparse matrix using dynamic memory allocation.
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
how to set Nth bit of a variable?
Is using exit() the same as using return?
What is the purpose of & in scanf?
What does char * * argv mean in c?