C
This commit is contained in:
8
w3school/strings.c
Normal file
8
w3school/strings.c
Normal file
@ -0,0 +1,8 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main () {
|
||||
char greetings[] = "Hello!";
|
||||
greetings[0] = 'Y';
|
||||
printf("%s\n", greetings);
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user