Here are few very simple and basic C language programs with C programming examples that you will use to understand the basics very easily. Write a C programme to calculate area of a rectangle : #include<stdio.h> int main(){ Int l, b, area; printf(“Enter length and breadth of a rectangle \n”); scanf(“%d %d”, &l, &b); area = l *b; printf(“Area of rectangle is %d \n”, area); return 0; } Write a C program to calculate area of a circle : #include<stdio.h> int main(){ float r, area; printf(“Enter the radius of the...
Here you can learn programming languages such as C , C++ , Java , Python etc. From beginner level to advance level in detail and in very simple and easily understandable words.