How can I invoke another program from within a C program?
Answer Posted / jai sundar
Just include tha other file name
#include "Filename.c" .
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is the best style for code layout in c?
What is break in c?
Do you know what are bitwise shift operators in c programming?
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
How can I call fortran?
Under what circumstances does a name clash occur?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
How can a program be made to print the name of a source file where an error occurs?
develop algorithms to add polynomials (i) in one variable
Explain how do you list a file’s date and time?
What is a MAC Address?
Explain what does it mean when a pointer is used in an if statement?
Why do we use namespace feature?
all c language question