Posts

Showing posts from November, 2019

How to Program to write To print ❤️ Heart Shape in C Programming

Image
#include<stido.h> #include<conio.h> void main() { int 1, 1;  int n=5;//size /*upper part*/ for(i-n/2; i<=n; i+=2) { for(j=1; j<n-i; j+-2)  {  printf (" "); } for(j=1; j<=i; j++)  {  printf("*"); } for(j=1; i<=n-i; i++) {  printf(" "); } for(j=1;j<=1;j++) { printf ("*"); } printf ("\n"); } /*Lower Part*/ for(i=1;i>=1;i--) { for(j=1;j<n;j++) { printf(" "); } printf ("\n"); } getch(); } Output:

In C Programming How to Add two Number

How to add two number in c programming step by step code. #include <stdio.h> #include<conio.h> void main ( ) {    int  a,b,sum ;    printf ( "Enter two numbers to add: \n " ) ;    scanf ( "%d%d" , & a , & b ) ;   sum = a + b ;    printf ( "Sum of the numbers= %d \n " , sum ) ;    getch() ; } Output: Enter two number to add: 5 4 Sum of numbers=9