Похожие чаты

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 ответов

15 просмотров
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

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

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

Господа, а что сейчас вообще с рынком труда на делфи происходит? Какова ситуация?
Rꙮman Yankꙮvsky
29
А вообще, что может смущать в самой Julia - бы сказал, что нет единого стандартного подхода по многим моментам, поэтому многое выглядит как "хаки" и произвол. Короче говоря, с...
Viktor G.
2
@Benzenoid can you tell me the easiest, and safest way to bu.y HEX now?
Živa Žena
20
This is a question from my wife who make a fortune with memes 😂😂 About the Migration and Tokens: 1. How will the old tokens be migrated to the new $LGCYX network? What is th...
🍿 °anton°
2
30500 за редактор? )
Владимир
47
а через ESC-код ?
Alexey Kulakov
29
What is the Dex situation? Agora team started with the Pnetwork for their dex which helped them both with integration. It’s completed but as you can see from the Pnetwork ann...
Ben
1
Гайс, вопрос для разносторонее развитых: читаю стрим с юарта, нада выделять с него фреймы с определенной структурой, если ли чо готовое, или долбаться с ринг буффером? нада у...
Vitaly
9
Anyone knows where there are some instructions or discort about failed bridge transactions ?
Jochem
21
@lozuk how do I get my phex copies of my ehex from a atomic wallet, to move to my rabby?
Justfrontin 👀
11
Карта сайта