#include <stdio.h>
int main()
{
char str[] = "Right'0'Wrong";
printf("%s\n", str);
return 0;
}
References: C From Theory