using turboc++
---------------------------------------------------------------------------------------------------------------------
//WAP to compare two strings using(strcmp()) function.
#include <stdio.h>
#include<string.h>
#include<conio.h>
int main()
{
char st[100],st1[100];//two string declaration
printf("enter first string\n");
gets(st);
printf("enter second string\n");
gets(st1);//inputs
if(strcmp(st,st1)>0)//
{
printf("%s has more ascii value than %s",st,st1);
}
else if(strcmp(st,st1)<0)
{
printf("%s has more ascii value than %s",st1,st);
}
else
{
printf("%s and %s have same ascii value",st,st1);
}
getch();
return 0;
}
---------------------------------------------------------------------------------------
using codeblocks
------------------------------------------------------------------------------------------------
//WAP to compare two strings using(strcmp()) function.
#include <stdio.h>
#include<string.h>
int main()
{
char st[100],st1[100];//two string declaration
printf("enter first string\n");
gets(st);
printf("enter second string\n");
gets(st1);//inputs
if(strcmp(st,st1)>0)//
{
printf("%s has more ascii value than %s",st,st1);
}
else if(strcmp(st,st1)<0)
{
printf("%s has more ascii value than %s",st1,st);
}
else
{
printf("%s and %s have same ascii value",st,st1);
}
return 0;
}
---------------------------------------------------------------------------------------------------------------------
//WAP to compare two strings using(strcmp()) function.
#include <stdio.h>
#include<string.h>
#include<conio.h>
int main()
{
char st[100],st1[100];//two string declaration
printf("enter first string\n");
gets(st);
printf("enter second string\n");
gets(st1);//inputs
if(strcmp(st,st1)>0)//
{
printf("%s has more ascii value than %s",st,st1);
}
else if(strcmp(st,st1)<0)
{
printf("%s has more ascii value than %s",st1,st);
}
else
{
printf("%s and %s have same ascii value",st,st1);
}
getch();
return 0;
}
---------------------------------------------------------------------------------------
using codeblocks
------------------------------------------------------------------------------------------------
//WAP to compare two strings using(strcmp()) function.
#include <stdio.h>
#include<string.h>
int main()
{
char st[100],st1[100];//two string declaration
printf("enter first string\n");
gets(st);
printf("enter second string\n");
gets(st1);//inputs
if(strcmp(st,st1)>0)//
{
printf("%s has more ascii value than %s",st,st1);
}
else if(strcmp(st,st1)<0)
{
printf("%s has more ascii value than %s",st1,st);
}
else
{
printf("%s and %s have same ascii value",st,st1);
}
return 0;
}
No comments:
Post a Comment