

InterviewSolution
Saved Bookmarks
1. |
Write a program to get the input in runtime and find the result of area of rectangle |
Answer» C Program#include\xa0<stdio.h> int\xa0main() { int\xa0width=5; int\xa0height=10; int\xa0area=width*height; printf("Area\xa0of\xa0the\xa0rectangle=%d",area); } | |