Horje
script in c Code Example
script in c
#!/usr/bin/perl
use Inline C;
exit main0();
__END__
__C__
#include <stdio.h>

int main0()
{
   printf("Hello world !\n");
   return 0;
}
script in c
$ chmod +x test1.c
$ ./test1.c
> Hello world !
script in c
#!/usr/bin/perl
use Inline C;
$arg = $ARGV[0];
$arg = tr/[a-z]/[A-Z]/; # modification du paramètre
exit main0($arg);
__END__
__C__
#include <stdio.h>

int main0(char *arg1)
{
   printf("Hello %s \n",arg1);
   return 0;
}




C

Related
make a function makefile Code Example make a function makefile Code Example
confirm sweet alert Code Example confirm sweet alert Code Example
string to doublein c Code Example string to doublein c Code Example
how can i remove a specific item from an array Code Example how can i remove a specific item from an array Code Example
maatwebsite/excel file import Code Example maatwebsite/excel file import Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7