- 2
PLS CORRECT THIS PROGRAMM
// program to find area of rectangle #include<conio.h> #include<iostream.h> void main() { clrscr(); int b,area; float l; b=5; l=4.5; area=l*b; cout<<"AREA OF RECTANGLE IS "<<area; getch(); }
2 Answers
+ 3
Don't use turbo c for anything, It's a thing of the late 1900s and any modern c compiler is better than it.
https://www.sololearn.com/Discuss/288609/why-to-avoid-turbo-c-tcc
+ 2
Thanks