mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-06 05:41:37 +00:00
12 lines
213 B
C
12 lines
213 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
int main(int argc, char ** argv)
|
|
{
|
|
char * mem = malloc(40);
|
|
sprintf(mem, "Hello world (%s)!\n", argv[0]);
|
|
printf("%s", mem);
|
|
return 0;
|
|
}
|