main()
{
char *ptr = "Ramco Systems";
(*ptr)++;
printf("%s\n",ptr);
ptr++;
printf("%s\n",ptr);
}
Find the Outputs?

Answer Posted / guest

error

Is This Answer Correct ?    6 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is memory leak in c?

629


Can you explain what keyboard debouncing is, and where and why we us it? please give some examples

1648


What is an lvalue in c?

690


What is null pointer constant?

590


What are the 4 types of programming language?

576






Write the control statements in C language

644


When should the volatile modifier be used?

675


Compare and contrast compilers from interpreters.

678


Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon

5460


What is the difference between array and structure in c?

565


How can a process change an environment variable in its caller?

648


What is the purpose of void pointer?

590


Why doesnt that code work?

597


what is the difference between 123 and 0123 in c?

714


why return type of main is not necessary in linux

1697