What is the difference between #include <header file> and #include “header file”?
How many bytes are occupied by near, far and huge pointers (dos)?
Can math operations be performed on a void pointer?
What are qualifiers and modifiers c?
Write a program to print fibonacci series using recursion?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures
How can my program discover the complete pathname to the executable from which it was invoked?
What does it mean when a pointer is used in an if statement?
Explain why C language is procedural?
What is the difference between declaring a variable and defining a variable?
How can I implement sets or arrays of bits?
What are the different properties of variable number of arguments?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34