main()
{
char *ptr = "Ramco Systems";
(*ptr)++;
printf("%s\n",ptr);
ptr++;
printf("%s\n",ptr);
}
Find the Outputs?
Post New Answer View All Answers
What does it mean when a pointer is used in an if statement?
Is python a c language?
What is function prototype?
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
What is d'n in c?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
What is static and auto variables in c?
What is 1f in c?
What is function prototype in c language?
Differentiate between the = symbol and == symbol?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
What is the meaning of typedef struct in c?
cavium networks written test pattern ..
Do string constants represent numerical values?
Are the expressions * ptr ++ and ++ * ptr same?