Can we include one C program into another C program if yes how?
Answers were Sorted based on User's Feedback
Answer / vinay kashyap
may be using the preprocessor directives.. like..
#include "prog1.c"
#include<stdio.h>
int main()
{
.
.
.
.
}
| Is This Answer Correct ? | 15 Yes | 7 No |
Answer / dennis richie
@ answer 3:
der can't b multiple declaration of main...
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / krishhna
We can include the another c program so before that the program which you are going to include should be coppied to c:>tc\include directory
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / amegha
can include another file by using preprocessor directive.
#include<program1.c>
#include<stdio.h>
main()
{
-----
-----
}
| Is This Answer Correct ? | 4 Yes | 4 No |
Answer / cheers!
You can include a C file in an another file as depicted in the above example.
And you can also include an another process call ( which is basically a program) in a running program like..
int main()
{
main() // example 1
system("./RunMyProg"); // example 2
system("ls -l"); // example 3
}
| Is This Answer Correct ? | 0 Yes | 7 No |
Answer / yogesh bansal
Not Sure..But If the below way is correct. then yes, we can
do that
#include <stdio.h>
int main()
{
printf("this is first program\n");
int main()
{
printf("this is second program\n");
return 0;
}
main();
return 0;
}
| Is This Answer Correct ? | 7 Yes | 28 No |
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
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
Tell me when would you use a pointer to a function?
What is bubble sort in c?
Explain in detail how strset (string handling function works )pls explain it with an example.
What is wrong in this statement?
How do we print only part of a string in c?
How can I read a directory in a c program?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
Do you know what are the properties of union in c?
What are bit fields? What is their use?
Implement bit Array in C.