how to find anagram without using string functions using
only loops in c programming
No Answer is Posted For this Question
Be the First to Post Answer
how can I convert a string to a number?
what is a stack
What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
what is the meaning of java that is (J A V A) full form of JAVA
71 Answers AKS University, Bhel, BNL, BPO, HCL, Peacecon,
Can you write a programmer for FACTORIAL using recursion?
will u please send me the placement papers to my mail???????????????????
biggest of two no's with out using if condition statement
write a program to count the no of repaeted words in a line?
Is there a way to compare two structure variables?
What is the difference between procedural and declarative language?