100% Advantage of pointers..an illustration
/*re-assigning a different name to a char array not possible directly but similar thing can be achieved with pointers*/
#include<stdio.h>void main()
{
char a[ ]="SATYAMU";
char *p="cheppu";
char *t;
t=p;
//a="cheppu";
/* if the above line is not commented then we will get error, bcoz a is already assigned a string SATYAMU and new assignment with other name is not acceptable*/
printf("%s, %d",t, *t);
printf("\n %s, %d",p, *p);
}
printf("%s, %d",t, *t);
printf("\n %s, %d",p, *p);
}
తెరమీద
cheppu, 99
cheppu, 99
cheppu, 99
గమనిక ... ఇక్కడ 99అనేది cheppuలో మొదటి అక్షరమైన c యొక్క ASCII విలువ. 'a' యొక్క ASCII విలువ 97 అని మీకు తెలుసు!.
కామెంట్లు
కామెంట్ను పోస్ట్ చేయండి
దయచేసి మీ సలహాలను సూచనలను స్పష్టంగా పేర్కొనగలరు. plz see that ur comments are 'acceptable' in a value based society.