Implement strcmp

Answers were Sorted based on User's Feedback



Implement strcmp..

Answer / lylez00

#include <string.h>
/* strcmp */
int (strcmp)(const char *s1, const char *s2)
{
unsigned char uc1, uc2;
/* Move s1 and s2 to the first differing characters
in each string, or the ends of the strings if they
are identical. */
while (*s1 != '\0' && *s1 == *s2) {
s1++;
s2++;
}
/* Compare the characters as unsigned char and
return the difference. */
uc1 = (*(unsigned char *) s1);
uc2 = (*(unsigned char *) s2);
return ((uc1 < uc2) ? -1 : (uc1 > uc2));
}

Is This Answer Correct ?    7 Yes 3 No

Implement strcmp..

Answer / shanmugavalli

int strcmp(const char *src, const char *dest)
{

while (*src && *dest && (*src==*dest))
{
src++;
dest++;
}
return (*src-*dest);

}

Is This Answer Correct ?    1 Yes 1 No

Implement strcmp..

Answer / sanjith

#inclde<string.h>
int d;
class test
public: void read()
void cmb()
};
void test::read()
{ cout<<"Enter the first string:";
cin>>s1;
cout<<"Enter the second string";
cin>>s2;
}
void test::cmb()
{
d=strcmp(s1,s2);
}
main()
{
test t1,t2;
t1.read();
t2.cmb();
t2.print();
}

Is This Answer Correct ?    1 Yes 4 No

Post New Answer

More C++ General Interview Questions

Does there exist any way to make the command line arguments available to other functions without passing them as arguments to the function?

0 Answers  


What are c++ files?

0 Answers  


Is empty stack c++?

0 Answers  


Do you know the problem with overriding functions?

0 Answers  


Floating point representation and output seems to be compiler dependent?

1 Answers  


How do you clear a map in c++?

0 Answers  


What can I safely assume about the initial values of variables which are not explicitly initialized?

0 Answers  


What is meant by reference variable in C++?

1 Answers  


Give an example of run-time polymorphism/virtual functions.

0 Answers  


Is c++ fully object oriented?

0 Answers  


What gives the current position of the put pointer?

0 Answers  


What is bubble sort c++?

0 Answers  


Categories