Mercurial > codedump
view garf.c @ 116:205fc01d5eb4
kmbscreens: replace bat+c with py
committer: GitHub <noreply@github.com>
author | Paper <37962225+mrpapersonic@users.noreply.github.com> |
---|---|
date | Sat, 04 Feb 2023 13:46:06 -0500 |
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; }