-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbeelo.c
58 lines (54 loc) · 1.42 KB
/
beelo.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#include<stdio.h>
#include<stdlib.h>
// int main()
// {
// int sum=0;
// char str[50];
// int i;
// /*count array is used to find the count of each character in the sentence*/
// int count[26]={0}; //intiallizing all elements of array with 0
// printf("enter the sentence");
// gets(str);
// /*Ascci Values
// A-65
// a-97
// white space - 32
// */
// for(i=0;str[i]!='\0';i++)
// {
// // if(str[i]==32)
// // continue; //skip if white space
// /*Count
// index 0 - a,A
// index1 - b,B
// ...
// */
// if(str[i]>96) //If small letter
// count[str[i]-97] +=1; //increment the count
// // else //If capital letter
// // count[str[i]-65] +=1;
// }
// for(i=0;i<26;i++)
// {
// /*If any element in count array is zero, then it is not Panagram*/
// if(count[i]==0)
// {
// sum+=count[i];
// // printf("Not Panagram");
// // exit(-1);
// }
// }
// printf("Panagram");
// printf("%d",sum);
// }
void main(){
char suite =3;
//Switch(suite);
{
Case 1: printf("its night");
case 2: printf("its midnight");
default: printf("its");
}
printf("yooo");
//return 0;
}