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 type of function is main ()?
What is the use of define in c?
What is the use of ?: Operator?
What is the difference between the = symbol and == symbol?
What is #include conio h?
Explain what is a pragma?
Explain the properties of union. What is the size of a union variable
What does it mean when a pointer is used in an if statement?
Is there a way to compare two structure variables?
Compare array data type to pointer data type
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
Explain two-dimensional array.
write a programming in c to find the sum of all elements in an array through function.
in iso what are the common technological language?
What is string concatenation in c?