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

Can one function call another?

0 Answers  


Is register a keyword in c?

0 Answers  


Write code for atoi(x) where x is hexadecimal string.

5 Answers   Adobe,


When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.

0 Answers   HCL,


c program to subtract between two numbers without using '-' sign and subtract function.

1 Answers  


code for reverse alternate words from astring

1 Answers   IBM,


write a program to add two numbers of any size.....(remember any size)

1 Answers  


What are local static variables? How can you use them?

0 Answers  


What is pointer in c?

0 Answers  


What is a example of a variable?

0 Answers  


How can I find the modification date and time of a file?

0 Answers  


write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.

0 Answers  


Categories