You are on page 1of 2

1Q /

Explain the most Important Feature of C++?


15 Marks

Q 2 /
What era C ompiler dan ?Linker
15 Marks

Q 3 /
Correct the Errors in the following code then write the output of the program?
15 Marks

#include<iostream.h>
int main()
{
int i,ave;
for(i=10; i>=1; i++)
{
ave=i/2;
cout<< ave <<endl;
}
return 0;
}

You might also like