save char in array c code example
Example 1: how to print char array in c
char a_static[] = { 'q', 'w', 'e', 'r', '\0' };
char b_static[] = { 'a', 's', 'd', 'f', '\0' };
printf("value of a_static: %s\n", a_static);
printf("value of b_static: %s\n", b_static);
return 0;
Example 2: how to feed a char array to function in C
//If you know the size of the array you can pass it like this
void function(char array[10]) {
//Do something with the array...
}
int main() {
char array[] = {'a', 'b', ..., 'j'};
function(array);
}