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 are disadvantages of C language.
What is the difference between exit() and _exit() function in c?
What are the main characteristics of c language describe the structure of ac program?
How can I handle floating-point exceptions gracefully?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
Is there any possibility to create customized header file with c programming language?
When is the “void” keyword used in a function?
What is the benefit of using an enum rather than a #define constant?
What is typedf?
Tell us bitwise shift operators?
What does d mean?
Is c easy to learn?
How can I insert or delete a line (or record) in the middle of a file?
Explain the use of 'auto' keyword in c programming?
hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...