#include <stdio.h> void main() { char ch[12][14] = {"India", "Hindusatan", "Bharat"}; printf("%p\n", ch); printf("%p", ch[0]); }
Same memory address
Previous Question Next Question
Your comments will be displayed only after manual approval.