how to test pierrot divisor
No Answer is Posted For this Question
Be the First to Post Answer
You are given any character string. Find the number of sets of vowels that come in the order of aeiou in the given string. For eg., let the given string be DIPLOMATIC. The answer returned must be "The number of sets is 2" and "The sets are "IO and AI". Vowels that form a singleton set must be neglected. Try to post the program executable in gcc or g++ or in java.
Give a oneline C expression to test whether a number is a power of 2?
25 Answers EA Electronic Arts, Google, Motorola,
abcdedcba abc cba ab ba a a
How do you verify if the two sentences/phrases input is an anagram using predefined functions in string.h and by using arrays?
Derive expression for converting RGB color parameters to HSV values
What is wrong with the following code? int *foo() { int *s = malloc(sizeof(int)100); assert(s != NULL); return s; }
How we print the table of 2 using for loop in c programing?
Cau u say the output....?
What is the output of the program given below main() { signed char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
¦void main() ¦{ ¦int i=10,j; ¦ j=i+++i+++i; ¦printf("%d",j); ¦getch(); ¦} ¦ output:-30 but in same question if we write as- ¦void main() ¦{ ¦int i=10; ¦ int j=i+++i+++i; ¦printf("%d",j); ¦getch(); ¦} ¦ output:-33 why output is changed from 30 to 33. Can any body answer...
Program to Delete an element from a doubly linked list.
4 Answers College School Exams Tests, Infosys,
find A^B using Recursive function