Commit 38fd75d9 by matjul

Upload New File

parent 44ae1770
Showing with 16 additions and 0 deletions
#include "stdio.h"
int main () {
char array[40] = "this is a string";
printf("|");
for(int i = 0; i < 40; i++) {
printf("%c", array[i]);
}
printf("|\n|");
printf("%s", array);
printf("|");
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment