We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ef613c commit 64b5f17Copy full SHA for 64b5f17
Hackerrank solutions/30 days Of Code/Day6-Let's Review.c
@@ -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