Monday 23 January 2017

11C-UT-3 Blue Print-2017

I- Two Dimensional Array  - 10 marks
  * Manipulation Array elements with application problems

II. User defined function.-15
     * 4 styles of functions
     * call by value and reference
     * function writing for the description
     * Output finding
      * concept
III structure-15
      * Programme writing
       * output finding
       *  concepts      

 

Wednesday 4 January 2017

11C-prg-17 Write a algorith and program whether a given character is an alphabet, digit or any other character.

Write a algorith and program whether a given character is an alphabet, digit or any other
character.

Algorithm:

Input:
1. ch  //character

Output:
1. al/dig/spec

Method:
1. start
2. Read ch
3. Print ch
4. //logic

  if(isalpha(ch))
   Print " The character is an alphabet "
  else
  if(isdigit(ch))
   print " The character is an digit"
  else
   Print " It is a special character"
5.Stop