Advertisement
andruhovski

Untitled

Sep 11th, 2014
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.41 KB | None | 0 0
  1. #include <stdio.h>
  2. #define SIZE1  12
  3. #define SIZE2  10
  4.  
  5. int main(void) {
  6.       char train[SIZE1];
  7.       int  ticket;
  8.       char days[SIZE2];
  9.       int  time;
  10.  
  11.       printf("Enter train num, ticket number, days and time like this: ICS 103 SUMT 0810\n");
  12.       printf("> ");
  13.       scanf("%12s%d%10s%d", train, &ticket, days, &time);
  14.       printf("%s %d %s %d\n", dept, course, days, time);
  15.       return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement