ORCA-C/Tests/Conformance/C2.7.4.2.CC
2017-10-01 17:47:47 -06:00

1 line
573 B
C++
Executable File

/* Conformance Test 2.7.4.2: Ensure ability to define string constants */
/* across source lines */
main ()
{
char s[300] = "The string begins here...\
and ends here!";
if (strcmp (s, "The string begins here... and ends here!"))
goto Fail;
strcpy (s, "another spl\
it string!");
if (strcmp (s, "another spl it string!"))
goto Fail;
printf ("Passed Conformance Test 2.7.4.2\n");
return;
Fail:
printf ("Failed Conformance Test 2.7.4.2\n");
}