What is structure packing in c?
No Answer is Posted For this Question
Be the First to Post Answer
how to add two numbers without using arithmetic operators?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
Which of the following sorts is quickest when sorting the following set: 1 2 3 5 4 1) Quick Sort 2) Bubble Sort 3) Merge Sort
write a function that accepts an array A with n elements and array B with n-1 elements. Find the missing one in array B,with an optimized manner?
What is the difference between variable declaration and variable definition in c?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What is %d called in c?
What is a protocol in c?
difference between semaphores and mutex?
What is gets() function?
What does c mean in standard form?
What is the general form of a C program?