char* ptr = "Rahul";
*ptr++;
printf("%s",ptr);


What will be the output

Answers were Sorted based on User's Feedback



char* ptr = "Rahul"; *ptr++; printf("%s",ptr); What will be the output..

Answer / vadivelt

Since address pointed by ptr got incremented, ptr will point to
address of char 'a'.

So o/p will be - ahul

Is This Answer Correct ?    73 Yes 5 No

char* ptr = "Rahul"; *ptr++; printf("%s",ptr); What will be the output..

Answer / praveen

ahul

Is This Answer Correct ?    26 Yes 4 No

char* ptr = "Rahul"; *ptr++; printf("%s",ptr); What will be the output..

Answer / sachin

ahul

Is This Answer Correct ?    13 Yes 0 No

char* ptr = "Rahul"; *ptr++; printf("%s",ptr); What will be the output..

Answer / amit

Ans: ahul


Reason:

Initially character pointer ptr pointed to the first character
of Rahul..when we increase it by increament operator it increase one byte.because size of character is one bye..
now it point to a..
we print from here
therefore we got above answer
so

Is This Answer Correct ?    9 Yes 0 No

char* ptr = "Rahul"; *ptr++; printf("%s",ptr); What will be the output..

Answer / sudeep dutta

Rahul loses his name and becomes ahul.

Is This Answer Correct ?    3 Yes 0 No

char* ptr = "Rahul"; *ptr++; printf("%s",ptr); What will be the output..

Answer / sunayana

the output is "ahul"

Is This Answer Correct ?    2 Yes 0 No

char* ptr = "Rahul"; *ptr++; printf("%s",ptr); What will be the output..

Answer / sayali

this code generates the output as,
ahul
but is also generate warning
that
code has no effect..

Is This Answer Correct ?    2 Yes 2 No

char* ptr = "Rahul"; *ptr++; printf("%s",ptr); What will be the output..

Answer / deepak

Ans:Sahul

Reason:
Intially *ptr contains ASCII value of 'R' on incrementing it
will points to ASCII value of 'S'.

Is This Answer Correct ?    2 Yes 15 No

char* ptr = "Rahul"; *ptr++; printf("%s",ptr); What will be the output..

Answer / darshan

Rahul

Is This Answer Correct ?    4 Yes 18 No

Post New Answer

More OOPS Interview Questions

What is difference between function overloading and overriding?

1 Answers   emc2,


What is virtual function?where and when is it used?

2 Answers   Sitel,


Can a varargs method be overloaded?

0 Answers  


Plese get me a perfect C++ program for railway/airway reservation with all details.

0 Answers   ITM,


What is abstraction example?

0 Answers  






What is this interview room ? Is it a class or an object.

3 Answers   CybAge, NSN, Wipro,


Explain the advantages of inheritance.

0 Answers   TCS,


Do you know about multiple inheritance?

1 Answers   Motorola,


What does no cap mean?

0 Answers  


Pls...could any one tell me that whether we can access the public data memeber of a class from another class with in the same program. Awaiting for your response Thanku

4 Answers  


Describe these concepts: Polymorphism, Inheritance and Abstraction.

0 Answers   TCS,


What is a function in oop?

0 Answers  


Categories