main()
{
char *ptr = "Ramco Systems";
(*ptr)++;
printf("%s\n",ptr);
ptr++;
printf("%s\n",ptr);
}
Find the Outputs?
Answer Posted / lucky
samco system
amco system
| Is This Answer Correct ? | 10 Yes | 6 No |
Post New Answer View All Answers
What is getche() function?
Explain about the constants which help in debugging?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
Explain data types & how many data types supported by c?
Do you know pointer in c?
What is wrong with this program statement?
What are the different types of objects used in c?
in iso what are the common technological language?
What is the ANSI C Standard?
Are there any problems with performing mathematical operations on different variable types?
Explain what are multibyte characters?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
Create a simple code fragment that will swap the values of two variables num1 and num2.
What is malloc and calloc?
Without Computer networks, Computers will be half the use. Comment.