Concept learning code sheets is a collection of neatly organised codes which are well explained with some defined learning objectives. These are developed in a way to acquire various concepts related to a topic.
Finding the area of a triangle when base and height is given
#include
using namespace std;
int main()
{
float a,b,h;
cout<<"Enter base and height of triangle:";
cin>>b>>h;
a=b*h/2; //do not write 1/2*b*h
cout<<"Area of triangle = "<
Solved problems are a specially designed set of problems which are usually based on some concept learning code sheets and they do enrich your learning of concepts along. They also provide you confidence to solve real life problems. Solutions to these problems are visible on user's request with press of a button.