Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
lab5!
//gcc 5.4.0 #include <stdio.h> int main(void) { char ch; scanf("%c", &ch); switch(ch) { case 'A': printf("\n vowel"); break; case 'E': printf("\n vowel"); break; case 'I': printf("\n vowel"); break; case 'O': printf("\n vowel"); break; case 'U': printf("\n vowel"); break; case 'a': printf("\n vowel"); break; case 'e': printf("\n vowel"); break; case 'i': printf("\n vowel"); break; case 'o': printf("\n vowel"); break; case 'u': printf("\n vowel"); break; default: printf("input is not a vowel but rather a consonant, digit, or special character"); } return 0; }
run
|
edit
|
history
|
help
0
hw 2
p20
18BCE2182 MIDTERM PART-B ATOMIC
C programming example for a Person struct and typedef (from ECE 2534)
thermal_containers
Sumit
18BCE2182 ASSESS_1 Q1-9
PUNTEROS 1
Goodone for understanding array passing
Project 3 Part 1 v1.1