У нас вы можете посмотреть бесплатно 79 How to store a string или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
1-In C the compiler treats a string as a pointer to the string , so after storing the string letter the compiler will return a pointer to the first character which is A. 2-So to the printf or scanf functions , we are passing a pointer to the first character of the string literal and we do not pass the whole string literal. 3-The scanf function expects a character pointer to the first character of the string which is a pointer that holds the address of h letter in the next example. 4-The same logic applied to printf function which returns a pointer to the first character of the string.