Advertisement
Infernale

Space Key

Oct 27th, 2018
520
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.64 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main(){
  5.     int tc,length;
  6.     scanf("%d",&tc);
  7.     for(int i=1;i<=tc;i++){
  8.         scanf("%d",&length);
  9.         int x=0;
  10.         char in[length+1];
  11.         char res[length];
  12.         scanf(" %[^\n]s",in);
  13.         for(int j=0;j<length;j++){
  14.             res[x] = in[j];
  15.             x++;
  16.             if(in[j]==' '){
  17.                 j++;
  18.                 while(in[j]!=' '){
  19.                     j++;
  20.                 }
  21.             }
  22.         }
  23.         printf("Case #%d: ",i);
  24.         for(int j=0;j<x;j++){
  25.             printf("%c",res[j]);
  26.         }
  27.         printf("\n");
  28.     }
  29.     return 0;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement