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

Answers were Sorted based on User's Feedback



main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%..

Answer / sumeet

Samco Systems
amco Systems

this will be the answer .. the reason being the ascii value
of r will be incremented so it now point to s( capital s
that is ) this account for (*ptr)++

next ptr++ will simply move you to the next charachter ..

Is This Answer Correct ?    20 Yes 7 No

main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%..

Answer / ruchi

Turbo c will give an answer
samco system
amco system
pointer ptr is at r
by(*ptr)++ we are incrementing it by one so we get s
by ptr ++ we are incrementing the addrestion of ptr so it
will give an output amco system;
but gcc compiler will not give any answer it will print
segmentation fault

Is This Answer Correct ?    7 Yes 0 No

main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%..

Answer / lucky

samco system
amco system

Is This Answer Correct ?    10 Yes 6 No

main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%..

Answer / madhu

segmentation fault.U can give that as *(ptr+1)

Is This Answer Correct ?    8 Yes 6 No

main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%..

Answer / chappa

The first increment is incorrect, since it will try to
increment the value of 'R' but will end up giving
Segmentation fault.

Second ptr++ is valid as it will shift the pointer from 'R'
to 'a'. The second print statement would have printed "amco
Systems", the compiler gives Seg fault due to the previous
incorrect increment.

Is This Answer Correct ?    2 Yes 0 No

main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%..

Answer / guest

error

Is This Answer Correct ?    6 Yes 5 No

main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%..

Answer / dhakchin moorthy.p

first printf stmt prints Ramco Systems
the error is in line ptr++;here u r trying to increment the
address holding by the pointer,pointer var may lost the
starting address.

Is This Answer Correct ?    0 Yes 1 No

main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%..

Answer / soundar

Address of the variable will be displayed for the first
printf stmt

previous address will be incremented and current address of
variable will displayed for second printf stmt

Is This Answer Correct ?    3 Yes 8 No

main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%..

Answer / vignesh1988i

Samco systems
amco systems



thank u

Is This Answer Correct ?    0 Yes 5 No

Post New Answer

More C Interview Questions

int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }

2 Answers  


a=(1,2,3); b=1,2,3; c=1,(2,3); d=(1,2),3; what's the value of 'a','b','c','d'

2 Answers  


What is action and transformation in spark?

0 Answers  


write a program to remove duplicate from an ordered char array? in c

2 Answers  


Differentiate Source Codes from Object Codes

1 Answers  






plz answer....A program that takes 3 variables e.g a,b,c in as seperate parameters and rotates the values stored so that value goes a to b, b to c and c to a .

3 Answers  


What are global variables?

0 Answers  


What are the applications of c language?

0 Answers  


what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits

2 Answers   Wipro,


What are the differences between Structures and Arrays?

0 Answers   TCS,


What is a structure member in c?

0 Answers  


What is the use of a ‘’ character?

0 Answers  


Categories