C Programming and Technical Programming Program

Program to input 'n' number of strings and print the string which is having highest number of vowels?

Read Solution (Total 2)

C Other Question

void main()
{
int x=0,y=0;
if(x++&&++y)
{x++ }
cout<
what is the output of the following piece of code :-

#include
int main()
{
int a = 5;
printf("%d %d %d",++a,a,a++);
return 0;
}