Realize strcmp very easy to think

Source: Internet
Author: User
#define _crt_secure_no_warnings#include<stdio.h> #include <stdlib.h>void strcom (char *str1, Char *str2, int *num) {int a = 0;int count = 0;//key is here to loop inference with a pointer while (*STR1&&*STR2) {str1++;str2++;if ((A=*STR1-*str2)! = 0) { *num = A;return;}}}  void Main () {char *str1 = "Abdda"; char *str2 = "ABDD"; int result = 0;strcom (str1, str2, &result);/inference assumes that the result hypothesis is greater than 0 STR1 greater than str2 otherwise str1 is less than str2   equals 0 if two strings equal if (Result > 0) {printf ("");} System ("Pause");}

Realize strcmp very easy to think

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.