strrev program in c code example
Example 1: what is stdin in c
//stdin accesses the keyboard, it's a file pointer
Example 2: how to create a string in c
char greeting[6] = {'H', 'e', 'l', 'l', 'o', '\0'};
char greeting[] = "Hello";
//stdin accesses the keyboard, it's a file pointer
char greeting[6] = {'H', 'e', 'l', 'l', 'o', '\0'};
char greeting[] = "Hello";