Print square using Printf statement

Write a C Program to  Print square using Printf statement

Required Knowledge:

Fundamentals of C,printf statement

E:\University work\semester 1\fcp\blog.c
 1 #include<stdio.h>
 2  void main()
 3  {
 4      printf("The printing of Square through printf staement:\n\n");
 5      
 6      printf("    *********   \n");
 7      printf("    *       *   \n");
 8      printf("    *       *   \n");     
 9      printf("    *********   \n");
10  }

Comments

Popular posts from this blog

C program to calculate velocity

C program to find square root of a number

C program to find maximum between two numbers