How do you do dynamic memory allocation in C applications?
No Answer is Posted For this Question
Be the First to Post Answer
write a program for 7*8 = 56 ? without using * multiply operator ? output = 56
Define recursion in c.
Is it better to use a macro or a function?
What is the size of empty structure in c?
What is difference between structure and union in c programming?
What is memcpy() function?
What is #line in c?
When the macros gets expanded?
Is c language still used?
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?
Write a program to swap two numbers without using third variable in c?
How are structure passing and returning implemented?