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 do you define CONSTANT in C?

1283


What is data types?

1092


Explain bitwise shift operators?

1253


What is a function simple definition?

1100


Explain how do you use a pointer to a function?

1112


Can you please explain the difference between exit() and _exit() function?

1034


What is the difference between NULL and NUL?

1297


What is wrong with this statement? Myname = 'robin';

1327


What does the c in ctime mean?

1099


What is static and auto variables in c?

1091


how we can make 3d venturing graphics on outer interface

4834


main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }

1560


What is identifiers in c with examples?

1184


What is the difference between new and malloc functions?

1132


Can a variable be both const and volatile?

1134