Answer Posted / sujith
I would rather say
rthi Computers
Reason is printf() takes a pointer to char to print the
string. we said 5+"Vidyarthi Computers" so this is
interpreted as "rthi Computers" becuase we have added 5 to
the base pointer. so it will print only "rthi Computers".
| Is This Answer Correct ? | 18 Yes | 0 No |
Post New Answer View All Answers
What is c system32 taskhostw exe?
Ow can I insert or delete a line (or record) in the middle of a file?
i want to switch my career from quailty assurance engineering to development kindly guide me from which programming language its better for me to start plz refer some courses or certifications too i have an experience of 1.5 yrs in QA field.Kindly guide me
How many identifiers are there in c?
Should I learn c before c++?
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
Write a program to find the biggest number of three numbers in c?
What are multibyte characters?
What is the purpose of type declarations?
How can I get the current date or time of day in a c program?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
Do you know the use of 'auto' keyword?
What is pointer to pointer in c language?
What is a static variable in c?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above