diff --git a/C/.gitignore b/C/.gitignore index d6b7ef3..f935021 100644 --- a/C/.gitignore +++ b/C/.gitignore @@ -1,2 +1 @@ -* !.gitignore diff --git a/C/Ternary.c b/C/Ternary.c new file mode 100644 index 0000000..c38f6e4 --- /dev/null +++ b/C/Ternary.c @@ -0,0 +1,9 @@ +#include +int main() +{ + char c; + printf("Enter a character\n"); + scanf("%c",&c); + (c=='a'||c=='e'||c=='i'||c=='o'||c=='u')?printf("Vowel"):printf("Consonant"); + return 0; +} diff --git a/C/ootpatang.c b/C/ootpatang.c new file mode 100644 index 0000000..2e3e996 Binary files /dev/null and b/C/ootpatang.c differ