Monday, 30 September 2013

Addresses of two pointers are same – stackoverflow.com

Addresses of two pointers are same – stackoverflow.com

#include<stdio.h> #include<string.h> int main() { char * p = "abc"; char *
p1 = "abc"; printf("%d %d", p, p1); } When I print the addresses of the
two pointers, it is printing the …

No comments:

Post a Comment