[ create a new paste ] login | about

Link: http://codepad.org/5hkqKIMn    [ raw code | output | fork ]

kamarakay2000 - C, pasted on Jul 11:
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>
#define INPUT_MAX 64
int main()
{ 
    char input[INPUT_MAX];
    printf("Instructions:");
    fgets(input,INPUT_MAX,stdin);
    puts("Thank you ! Here are your instructions, ");
    puts("Share them to the other Students");
    return(0);
} 
    


Output:
1
2
Instructions:Thank you ! Here are your instructions, 
Share them to the other Students


Create a new paste based on this one


Comments: