View Code of Problem 78

#include<stdio.h>
#include<string.h>
void main()
{
	char a[100], b[100], c[100],temp[100];
	gets(a);
	gets(b);
	gets(c);
	if (strcmp(a, b) > 0)
	{
		strcpy(temp, a);
		strcpy(a, b);
		strcpy(b,temp);
	}
	if (strcmp(a, c) > 0)
	{
		strcpy(temp, a);
		strcpy(a, c);
		strcpy(c, temp);
	}
	if (strcmp(b, c) > 0)
	{
		strcpy(temp, b);
		strcpy(b, c);
		strcpy(c, temp);
	}
	puts(a);
	puts(b);
	puts(c);
}

Double click to view unformatted code.


Back to problem 78