#include <stdio.h>
int main(){
// Q.1 Printing the area of a rectangle, by taking user input. int length; int width; printf("Sir, pls enter the value of length: "); scanf("%d", &length); printf("Sir, pls enter the value of width: "); scanf("%d", &wid...