Wednesday, 9 March 2016

WAP TO ACCEPT A CHARACTER AS INPUT AND CHECK WHETHER THE CHARACTER IS A DIGIT

#include<stdio.h>
main()
{
char ch;
printf("Enter a character");
scanf("%c",&ch);
if((ch=='0')||(ch=='1')||(ch=='2')||(ch=='3')||(ch=='4')||(ch=='5')||(ch=='6')||(ch=='7')||(ch=='8')||(ch=='9'))
printf("Character is a digit");
else
printf("character is not a digit");
}

ASSIGNMENT 2)

TO DEMONSTRATE USE OF DECISION MAKING STATEMENTS SUCH AS if AND if-else

You should read following topics before starting this exercise

1. Different types of decision making statements available in C.
2. Syntax for this statements.

i   )  if statements
   
   Syntax =  if (condition)
                   {
                    statement;
                    }

ii  ) if-else
   
   Syntax =  if (condition)
                   {
                    statement;
                    }
                    else
                    {
                    statement;
                    }

iii ) Nested if
 
                   if (condition)
                   {
                            if (condition)
                                          { statement; }
                            else
                                          { statement; }
                    }
                    else
                    {
                            if (condition)
                                          { statement; }
                            else
                                          { statement; }
                    }




No comments:

Post a Comment