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
What does malloc () calloc () realloc () free () do?
What is the difference between void main and main in c?
Explain can static variables be declared in a header file?
Tell me is null always defined as 0(zero)?
What is getch () for?
why programs in c are running with out #include
Difference between goto, long jmp() and setjmp()?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Why c is called object oriented language?
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
What are the types of functions in c?
Describe how arrays can be passed to a user defined function
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
Who invented b language?
What is auto keyword in c?