Dene2.c
int main ( void )
{
fprintf ( stdout , "WAİTİNG for a sec to breath\n" ) ;
#command_go "dene.c"
return 0 ;
}
dene.c
int main ( void )
{
void wait ( int ) ;
getdata ( a );
showdata ( a );
** #command_go "dene2.c" **
wait ( seconds );
return 0;
}
void getdata ( char * b )
{
}
void showdata ( char * b )
{
}
void wait ( int seconds )
{
clock_t endwait = clock ( );
endwait = clock ( ) + seconds * CLOCKS_PER_SEC ;
while ( clock ( ) < endwait ) { }
}
I simply want connect two different c file,Can I do when I write something like #command_go "dene2.c" , I want activate other file