PLS CORRECT THIS PROGRAMM | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 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(); }

2nd Jun 2021, 6:53 AM
PRAVIN MAURYA
PRAVIN MAURYA - avatar
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
2nd Jun 2021, 7:27 AM
The future is now thanks to science
The future is now thanks to science - avatar
+ 2
Thanks
5th Jul 2021, 4:45 PM
PRAVIN MAURYA
PRAVIN MAURYA - avatar