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 THE ACTUAL DEFINATION OF OBJECT AND THE CLASS IN ONE SINGLE LINE WHICH THE INTERVIEWER WANT TO LISTEN.

11 Answers  


Program to read a comment string

1 Answers   IBM,


What is polymorphism in oops?

0 Answers  


What are two types of polymorphism?

0 Answers  


Can main method override?

0 Answers  


What type of loop is a for loop?

0 Answers  


What are the main differences between procedure oriented languages and object oriented languages?

9 Answers   IBM, Infosys, Wipro,


What is deep and shalow copy?

3 Answers   L&T, TCS,


WHAT'S THE OOPS BASIC OOPS CONCEPTS IN DOTNET

1 Answers  


pointers are support in C#? if yes then how to use it?

8 Answers   Softvision Solution,


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

3 Answers   CybAge, NSN, Wipro,


What is polymorphism used for?

0 Answers  


Categories