Sunday, February 14, 2021

 #include <stdio.h>

#include <string.h>
int main()
{
    
    char str[2];
    char st[4543] = "whats the problem";
    char sr[4543] = "internet";
    char ste[4543] = "router";
    char sty[4543] = "stfu";
    char stee[4543] = "try another input";
    printf("type hi :" , str);
    scanf("%s" , str);

    if (!strcmp(str"hi"))
    {
        printf("%s \n %s \n %s"stsrste);
    }
    else 
    {
        printf("%s"sty);
    }
    
       

    return 0;
}

No comments:

Software scope

 In software engineering, the software scope refers to the boundaries and limitations of a software project. It defines what the software wi...

Popular Posts