Skip to content

Instantly share code, notes, and snippets.

@arnaldog
Created December 12, 2014 15:55
Show Gist options
  • Save arnaldog/1e7046891089ad42c0d0 to your computer and use it in GitHub Desktop.
Save arnaldog/1e7046891089ad42c0d0 to your computer and use it in GitHub Desktop.
a que hora llega el almuerzo?
#include <stdio.h>
int main() {
char c;
printf("\n¿Luchus, a que hora llega el almuerzo?\n");
while ((c = getchar()) != EOF) {
if ( c == '\n' ) {
printf("¿Luchus, A que hora llega el almuerzo?\n");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment