Tech Study

C program to compare two strings using strcmp

Introduction

C program to compare two strings using strcmp. I have used Code:: Blocks compiler for debugging purpose. But you can use any C programming language compiler as per your availability.

#include <stdio.h>
#include <string.h>

int main()
{
   char str1[1000], str2[1000];

   printf("Enter the first string\n");
   gets(str1);

   printf("Enter the second string\n");
   gets(str2);

   if (strcmp(str1,str2) == 0)
      printf("Entered strings are equal.\n");
   else
      printf("Entered strings are not equal.\n");

   return 0;
}

Result

C program to compare two strings using strcmp
C program to compare two strings using strcmp

TaggedC program to compare two strings using strcmp

Java Final keyword

Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …

Read more

C++ Memory Management: new and delete

C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …

Read more