Code:
..................
..................
char a[]="Hello";
char *b="World";
.................
.................
when I compiled the above program in linux using gcc -S, I found only "World" in .rodata segment. Why "Hello" is not there in the .rodata segment?