13 lines
220 B
C
13 lines
220 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
if (argc < 2) {
|
|
printf("Please provide at least one argument\n");
|
|
exit(1);
|
|
};
|
|
printf("Hello, C!\n");
|
|
return 0;
|
|
}
|