Mercurial > codedump
view garf.c @ 101:a7d2fb3751a0
Create from.py
committer: GitHub <noreply@github.com>
author | Paper <37962225+mrpapersonic@users.noreply.github.com> |
---|---|
date | Sun, 28 Aug 2022 19:48:44 -0400 |
parents | bc2e83fbfbce |
children |
line wrap: on
line source
// garf simulator #include <stdio.h> #include <string.h> int main(void) { char answer[255]; printf("would you like to monetize 1123.best?: "); fgets(answer, sizeof(answer), stdin); if(strcmp(answer, "yes") == 0) { printf("it's a yes!"); } else { printf("it's a yes!"); } return 0; }