Wednesday, 21 October 2015

If,Else Second Number Is Square Of First :C Program


#include<stdio.h>
#include<conio.h>
void main()
{
    int a,b;
    printf("Enter Value Of a And b");
    scanf("%d%d",&a,&b);
    if(a*a==b)
    {
        printf("2ND Number Is Square of first");
    }
    else
    {
        printf("Not square");
    }
    getch();

}
21 Oct 2015

0 comments:

Post a Comment

:) :)) ;(( :-) =)) ;( ;-( :d :-d @-) :p :o :>) (o) [-( :-? (p) :-s (m) 8-) :-t :-b b-( :-# =p~ $-) (b) (f) x-) (k) (h) (c) cheer
Click to see the code!
To insert emoticon you must added at least one space before the code.