##k.k##


{ City } pune
< Country > india
* Profession * fresher.....
User No # 34317
Total Questions Posted # 0
Total Answers Posted # 3

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 19
Users Marked my Answers as Wrong # 4
Questions / { ##k.k## }
Questions Answers Category Views Company eMail




Answers / { ##k.k## }

Question { Honeywell, 18115 }

Write any small program that will compile in "C" but not
in "C++"


Answer

void main()
{
const var;
}

gives error in c++ but not in c....

Is This Answer Correct ?    5 Yes 0 No

Question { Quark, 50989 }

How long does this loop run:

for(int x=0; x=3; x++)
a) Never
b) Three times
c) Forever


Answer

#include
main()
{
for(int x=0; x=3; x++)
printf("Forever.....");
}

Is This Answer Correct ?    13 Yes 2 No


Question { 4694 }

what is the use of templates?


Answer

templates are used for GENERIC.....Programing...

by using templates.....you can write program for generic
linked list .

tempaltes make code reusable....

Is This Answer Correct ?    1 Yes 2 No