Skip to content

Commit 64b5f17

Browse files
authored
Create Day6-Let's Review.c
1 parent 1ef613c commit 64b5f17

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/* Sample Input
2+
3+
2
4+
Hacker
5+
Rank
6+
Sample Output
7+
8+
Hce akr
9+
Rn ak
10+
11+
space separates the even indexed characters and odd indexed characters */
12+
13+
#include <stdio.h>
14+
#include <string.h>
15+
#include <math.h>
16+
#include <stdlib.h>
17+
18+
int main() {
19+
int n;
20+
scanf("%d",&n);char s[50000];
21+
for(int i=0;i<n;i++)
22+
{
23+
scanf("%s",s);
24+
fun(s);
25+
}
26+
return 0;
27+
}

0 commit comments

Comments
 (0)