what are the advantage of pointer variables? write a program
to count the number of vowels and consonants in a given string

Answers were Sorted based on User's Feedback



what are the advantage of pointer variables? write a program to count the number of vowels and cons..

Answer / rama krishna sidhartha

The advantage of pointer variables is to reduce the memory
space of another variables.

I don't know how to write the program for counting the
vowels and consonants. If anybody knows please mail to

sidhartha_karyampudi@rediffmail.com

Is This Answer Correct ?    3 Yes 0 No

what are the advantage of pointer variables? write a program to count the number of vowels and cons..

Answer / gaurav kumar

#include <stdio.h>

int vowel;
int consonant;

void check_vowel(char c)
{
if ( c != 'a' && c != 'e' && c != 'i' && c != 'o' && c != 'u' && c != 'A' && c != 'E' && c != 'I' && c != 'O' && c != 'U')
consonant ++;
else
vowel++;
return;
}

int main(void) {
char p[25];
char *ptr=p;

printf("Enter a string:");
scanf(" %[^\n]25s",p);

printf("%s\n",p);
printf("%c\n",*p);

while(*ptr != '\0')
{
if(*ptr != ' ')
check_vowel(*ptr);
ptr++;
}
printf("The number of vowels : %d and consonants : %d in %s \n",vowel,consonant,p);

return 0;
}

Please mail me if any compact solution?

Is This Answer Correct ?    0 Yes 0 No

what are the advantage of pointer variables? write a program to count the number of vowels and cons..

Answer / vadivelt

#include<stdio.h>
#include<conio.h>

CountVowCons(char *ptr, int *count);

int main()
{
char *ptr;
int count[2];
ptr = (char *)malloc(200);
printf("ENTER INPUT STRING\n");
ptr = gets(ptr);
CountVowCons(ptr, count);
printf("\nNO OF VOWELS:%d \nNO OF CONS: %d",count[0], count
[1]);
getch();
}

CountVowCons(char *ptr, int *count)
{
int Vowcount = 0, Conscount = 0;
while(*ptr != '\0')
{
if((*ptr == 'a') || (*ptr == 'A') || (*ptr == 'e') ||
(*ptr == 'E') || (*ptr == 'i') ||
(*ptr == 'I') || (*ptr == 'o') || (*ptr == 'O') ||
(*ptr == 'u') || (*ptr == 'U'))
{
Vowcount++;
}

else if((*ptr >= 65 && *ptr <= 90) ||
(*ptr >= 97 && *ptr <= 122))
{
Conscount++;
}

ptr++;
}

*count++ = Vowcount;
*count = Conscount;
count--;
}

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More C Interview Questions

main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }

7 Answers   HCL,


Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;

2 Answers   Lucent,


write a program that will print %d in the output screen??

9 Answers   Infosys,


why array index always starts from zero??

4 Answers   TCS,


Input any no. and print all the the numbers that comes before it like this for e.g input = 4 0 01 012 0123 01234 plz answer it 2day

3 Answers  






What is sizeof array?

0 Answers  


What are the different types of pointers used in c language?

0 Answers  


what is the advantage of function pointer

16 Answers   CMC, CS, Freshdesk, L&T, LG Soft, Matrix, TCS,


Write a program to print factorial of given number using recursion?

0 Answers  


How we can set and clear bit in a byte using macro function?

2 Answers   L&T, Samsung,


what is the program to display your name in any color?

2 Answers   HCL,


how many keywords do C compile?

7 Answers   Microsoft, Practical Viva Questions,


Categories