C Programming and Technical Programming Program

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;
}

Read Solution (Total 27)

C Other Question

Program to input 'n' number of strings and print the string which is having highest number of vowels? #include
int main(){
int a=2;
a=a++ + ~++a;
printf("%d",a);
return 0;
}