The World of Computer Programming Language
1 2 3 4 5 6 7 8 9
#include <stdio.h> #include <conio.h> void main (void) { int Height, Width, Area; Height = 8, Width = 5; printf("Area of Square = %d", Area); getch (); }// main
Area of Square = 40
No comments:
Post a Comment