Explain what is the benefit of using an enum rather than a #define constant?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
In c language can we compile a program without main() function?
What's the difference between a linked list and an array?
how can be easily placed in TCS.
How do you define a function?
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
What functions are used for dynamic memory allocation in c language?
1. Write a program to reverse every second word in a given sentence.
where do we use volatile keyword?
What is the best way to comment out a section of code that contains comments?
What is spaghetti programming?
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);