How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
No Answer is Posted For this Question
Be the First to Post Answer
what type of language is C?
How can you invoke another program from within a C program?
Explain two-dimensional array.
What is FIFO?
write a program to print infinte number
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
Where does the name "C" come from, anyway?
What does calloc stand for?
how to connect oracle in C/C++.
Why main is used in c?
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
What are pragmas and what are they good for?