What are unions in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is malloc and calloc?
What are the 4 types of unions?
Why can't we initialise member variable of a strucutre
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
write a c prog for removing duplicate character from an array and sorting remaining elements using a single array
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
Which is the best website to learn c programming?
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.
difference between semaphores and mutex?
what is a stack
How to convert a binary number to Hexa decimal number?? (Note:Do not convert it into binary and to Hexadecimal)