How can I invoke another program from within a C program?
Answer Posted / phani kumar s
to access one C program in another C Program
there are two ways
1.making the file .exe and accessing and
2.include the file as the preprocess header
#include"File.h"
Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
What are valid signatures for the Main function?
What is the use of clrscr?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
Is c is a low level language?
what is the significance of static storage class specifier?
Should I learn c before c++?
Once I have used freopen, how can I get the original stdout (or stdin) back?
Why is c called c?
What is pass by reference in functions?
Which is the best website to learn c programming?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Why do we use stdio h and conio h?