top of page

Ashok N Kamthane Object-oriented Programming With Ansi And Turbo C Pearson Education 2003 Apr 2026

#include<iostream.h> #include<conio.h> void main() { clrscr(); cout << "Enter radius: "; int r; cin >> r; cout << "Area = " << 3.14 * r * r; getch(); }

bottom of page