|
/*Prime.Chapter_01/17 Write a program for Area of Squre*/ //document #include<stdio.h> //Header file #include<conio.h> //Header file Preprocessor Directive #define N 10 //Symbolic constant void main() //main program starts { int area; //variable declaration area = N*N; //process stmt printf("Area of square:\n"); // o/p stmt printf("%d", area); // to show the output visible getch(); return 0; } // Program ends. |
<!DOCTYPE html> <html> <head> <title> Class_3::::>>>>HTML Link,Image & Image Link </title> </head> <body> <a href="index.html" target="_blank" style="text-decoration:none;"> Mypages</a><br /> <a href="http://www.tbsbd.blogspot.com" target="_blank"> GoogleHomePages</a><br /> <a href="mailto:#" target="_blank"> Mail Of Admin</a><br /> <a href="http://www.tbsbd.blogspot.com" target="_blank"> <img src="logo02.gif" alt="This Logo" /> </a> </body> </html>
Comments
Post a Comment