Skip to content

Instantly share code, notes, and snippets.

@ShivamShrirao
Created June 29, 2018 22:35
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
char desc[100];
setvbuf(stdin, 0, 2, 0);
setvbuf(stdout, 0, 2, 0);
system("clear");
printf("######## Welcome to Command Center ########\n\n");
printf("Please don't ;) crash");
printf("\nEnter mission description:\n> ");
scanf("%s",desc);
printf("Description Updated !\n");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment