#include<stdlib.h>
#include<stdio.h>
/*This is a less simple program */
int main(int argc, char* argv[])
{
if (getchar()=='a') printf("Success\n")
else; printf("Failure\n");
return EXIT_SUCCESS;
}
Here's the plain text to compile.
/*This is a less simple program */
int main(int argc, char* argv[])
{
if (getchar()=='a') printf("Success\n");
else printf("Failure\n");
return EXIT_SUCCESS;
}
Here's the plain text to compile.