20 lines
223 B
C
20 lines
223 B
C
|
#include <stdio.h>
|
||
|
|
||
|
#define N 5
|
||
|
int main () {
|
||
|
|
||
|
char hello[] = "hello";
|
||
|
|
||
|
int i ;
|
||
|
|
||
|
for (i = 0 ; i< N ; i++) {
|
||
|
printf("%c",hello[i]);
|
||
|
}
|
||
|
printf("\n");
|
||
|
|
||
|
printf("%s\n",hello);
|
||
|
puts(hello);
|
||
|
|
||
|
return 1;
|
||
|
}
|