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 is a structure member in c?
How can I split up a string into whitespace-separated fields?
What is pre-emptive data structure and explain it with example?
Where are the auto variables stored?
What are the types of i/o functions?
Create a simple code fragment that will swap the values of two variables num1 and num2.
what value is returned to operating system after program execution?
What is a dynamic array in c?
What are the types of c language?
why wipro wase
What does the error 'Null Pointer Assignment' mean and what causes this error?
Difference between goto, long jmp() and setjmp()?
What is FIFO?
What is the difference between local variable and global variable in c?
What is difference between structure and union with example?