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/tax-owe-app-hw.c

15 lines
223 B
C
Raw Permalink Normal View History

2022-07-31 09:30:19 -04:00
#include <stdio.h>
// This application is purely for study purposes.
int main(int argc, char **argv)
{
char name[100];
printf("Tell me your name.\n");
scanf("%s", name);
printf("Welcome, %s!\n", name);
return 0;
}