What is the output of the programvoid main(){char s[]="oracle is the best";char t[40];char *ss,*tt;while(*tt++=*ss++);printf("%s",t);getch();}A. Oracle is the bestB. Core dumpC. Error MessageD. Goes into infinite loop

B

This question is related to Oracle Interview

Showing Answers 1 - 9 of 9 Answers

aniljoo

  • Feb 12th, 2007
 

b

  Was this answer useful?  Yes

sabeena

  • Apr 20th, 2007
 

I want to know what Core Dump means.

  Was this answer useful?  Yes

sivaganeshb

  • Aug 14th, 2007
 

Here, you are de-referring an un-intialized pointer(segmentation fault). A file called "core" will create and it contains the "images of that program"

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions