Похожие чаты

Simple example below what make array & pointer compatible!! &

different!!

#include <stdio.h>
#include <string.h>

int main(void)
{
char a[]="hello world";
char *b="hello world";

printf(" a6: %c\n", a[6]);
printf("a6+1: %c\n", a[6+1]);

printf(" b+6: %s\n", b+6);
*b++;*b++; /: for pro!
// b++; b++; // for gcc! & pro!
printf(" b++: %s\n", b);
printf(" b++: %c\n", b[0]); // NOTE
// the above last statement holds incremented pointer!!

printf(" b5: %c\n", b[5]);
printf("b5+1: %c\n", b[5+1]);

printf("la: %lu\n", strlen(a));
printf("lb: %lu\n", strlen(b));

printf(" %x\n", a[11]); // NULL/0: both
printf(" %x\n", b[9]); // 0

// printf(" %c\n", a[12]); // ERROR
// printf(" %c\n", b[25]); // NO-ERROR
// no-error in above line why?

}


Hoping GCC doesn’t throw any exception 😋

4 ответов

12 просмотров
Aakash-Saini Автор вопроса

I’ve modified above program to show how increment works!! in pointers further..

line 14 - *b++;*b++; -> useless and insane. b++; b++; would be same but still insane. ++b; ++b; would be more efficient but insane. b += 2; would be sane. line 17 - // the above last statement holds incremented pointer!! - > statements don't hold incremented anything, variables do. line 26 - accessing pointer out of range, invalid line 27 - accessing pointer out of range, using invalid format specification, also invalid line 30 - it is an error. accessing pointer out of range

There aren't any exceptions in C

and this

Похожие вопросы

Обсуждают сегодня

Ready for some fun AND a chance to win TKO Tokens? Join us for exciting minigames in our Telegram group! 🕒 Don’t miss out—games start on today 25 October 2024, at 8 PM! Ge...
Milkyway | Tokocrypto
255
Мужики и девушки, привет) в Вelphi xe7 в настройках во вкладке "Editor Options" далее " Color" есть список: "Elements", открыв который мы можем настраивать отображение разных...
Kraszx
14
is that okay?
Samurai 🇯🇵
21
Добрый вечер. Есть вопрос, а может и предложение. Был у меня диалог в другой группе о делфи и я задался вопросом: "А нельзя ли в делфи цвет //коментария и {комментария} сде...
Kraszx
24
How about the project bro Likes the community not that active ?
🅿️abby_FX
19
Всем привет! Подскажи, пожалуйста, как передать в TComboBox сразу значение и id записи. На Delphi я делал так: ComboBox1.Items.AddObject('Какое-то значение', Pointer(id запис...
Евгений
13
А вот это что за конструкция? Вернее, она тут нафига?
Serjone
10
Мдя, прикол, боевая сборка запускается (именно под отладчиком) после F9 примерно полторы минуты (97 секунд если быть точным). Начал копать - проблема детектится сразу - зависа...
Александр (Rouse_) Багель
38
Здравствуйте товарищи. А где вы смотрите маркеры/фенотипы клеток, чтобы подобрать антитело для задачи? Есть какой-то ресурс/база данных, или всё ручками по статьям? Мне нужно ...
Abruhmed
14
Мужики. привет) в Вelphi xe7 в настройках во вкладке "Editor Options" далее " Color" есть список: "Elements", открыв который мы можем настраивать отображение разных элементов...
Kraszx
2
Карта сайта