How can I invoke another program from within a C program?
Answer Posted / sharath
please can any one give an example program for this question
How can I invoke another program from within a C program?
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Is javascript written in c?
What are dangling pointers in c?
Explain what is the stack?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
List some of the static data structures in C?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is return type in c?
What is the c value paradox and how is it explained?
What does %c do in c?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
What are runtime error?
What is the difference between array and pointer in c?
What are the types of c language?
Distinguish between actual and formal arguments.
write a program to find out prime number using sieve case?