This repository has been archived on 2025-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
c-archive/hello-world.c
2022-07-31 09:30:19 -04:00

12 lines
212 B
C

#include <stdio.h>
int main(int argc, char **argv)
{
char initial;
printf("Please enter the following info:");
scanf("%c", &initial); // scanf("Initial i%". i%)
print("Your initials are %i");
return 0;
}