This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Showing posts with label A.B.C QAIDA. Show all posts
Showing posts with label A.B.C QAIDA. Show all posts

A.B.C QAIDA

#include<stdio.h>
#include<conio.h>
void main()
{
char ch;
clrscr();
printf("\n\n\n\tEnter the Character...");
scanf("%c",&ch);
if(ch=='a'||ch=='A')
printf("\n\tA for APPLE");
else if(ch=='b'||ch=='B')
printf("\n\tB for Bag");
else if(ch=='c'||ch=='C')
printf("\n\tC for Cat");
else if(ch=='d'||ch=='D')
printf("\n\tD for Driver");
else if(ch=='e'||ch=='E')
printf("\n\tE for Egg");
else if(ch=='f'||ch=='F')
printf("\n\tF for Flag");
else if(ch=='g'||ch=='G')
printf("\n\tG for Got");
else if(ch=='h'||ch=='H')
printf("\n\tH for Hen");
else if(ch=='i'||ch=='I')
printf("\n\tI for Islam");
else if(ch=='j'||ch=='J')
printf("\n\tJ for Jug");
else if(ch=='k'||ch=='K')
printf("\n\tK for Kattle");
else if(ch=='l'||ch=='L')
printf("\n\tL for Light");
else if(ch=='m'||ch=='M')
printf("\n\tM for Mouth");
else if(ch=='n'||ch=='N')
printf("\n\tN for Night");
else if(ch=='o'||ch=='O')
printf("\n\tO for Owl");
else if(ch=='p'||ch=='P')
printf("\n\tP for Pakistan");
else if(ch=='q'||ch=='Q')
printf("\n\tQ for Queen");
else if(ch=='r'||ch=='R')
printf("\n\tR for Ring");
else if(ch=='s'||ch=='S')
printf("\n\tS for Sun");
else if(ch=='t'||ch=='T')
printf("\n\tT for Table");
else if(ch=='u'||ch=='U')
printf("\n\tU for Umbrella");
else if(ch=='v'||ch=='V')
printf("\n\tV for Van");
else if(ch=='w'||ch=='W')
printf("\n\tW for Watch");
else if(ch=='x'||ch=='X')
printf("\n\tX for X-Ray");
else if(ch=='y'||ch=='Y')
printf("\n\tY for Yolk");
else if(ch=='z'||ch=='Z')
printf("Z for Zoo");
else
{
printf("\n\n\tEnter Valid Character");
}
getch();
}