Hi..
I'm trying to write a simple program to include a c file in another one..
TEST1.c
#include<stdio.h>
#include<conio.h>
#include<test.c>
void main()
{
printf("%c" str);
getch();
}
test.c
#include<stdio.h>
#include<conio.h>
extern char str;
void main()
{
str='A';
}
Is somethin like this is possible??? Code didn't run successfully