/*
#include <stdio.h>
int main()
{
printf("Hello world!\n");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello, World!");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello,\nWorld!");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\'Hello\'");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"Hello World\"");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"!@#$%%^&*()\"");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
prrintf("\"C")
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"C:\\Download\\hello.cpp\"")
;return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"C:\\test\"");
return 0;
}
, \",\\\\] is very important.
*/
#include <stdio.h.>
int main()
{
printf("special characters\n");
printf("[\\n,\\\" ,\\\\] is very important.");
return 0;
}