What's the best way to declare and define global variables?
Answer Posted / guest
The best arrangement is to place each definition in some
relevant .c file, with an external declaration in a header file.
| Is This Answer Correct ? | 17 Yes | 3 No |
Post New Answer View All Answers
Is c compiled or interpreted?
Explain what are run-time errors?
What does 3 mean in texting?
What are the advantage of c language?
How can a string be converted to a number?
What is the explanation for prototype function in c?
praagnovation
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
Explain the properties of union.
What does void main return?
What is a MAC Address?
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
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
Write a code on reverse string and its complexity.
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference