C programming tutorial - Part 9: arrays and pointers

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

Just a quick note: in order to print a string by referecing to its pointer, the correct syntax would be:
char *string1 = "hello";
char a = (*string1) + 1;
Then print char "a" at each iteration.

engineer_leo
welcome to shbcf.ru