Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Can we include one C program into another C program if yes how?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How #define works?

1049


what are the 10 different models of writing an addition program in C language?

1841


How do you print an address?

1212


Which is better malloc or calloc?

1059


What is the best organizational structure?

1067


What is a union?

989


What is the default value of local and global variables in c?

983


Explain how can you tell whether two strings are the same?

970


Without Computer networks, Computers will be half the use. Comment.

2251


What are the types of variables in c?

979


difference between object file and executable file

6641


can we implement multi-threads in c.

1087


void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }

1667


What is meant by preprocessor in c?

947


What is a lookup table in c?

1047