mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-12-22 23:29:27 +00:00
12 lines
302 B
C++
12 lines
302 B
C++
/* Deviance Test 2.7.4.1: Ensure string constants with no closing " are */
|
|
/* flagged as errors */
|
|
|
|
main ()
|
|
{
|
|
char string [] = "badly formed string ;
|
|
|
|
strcpy (string, "another bad string );
|
|
|
|
printf ("Failed Deviance Test 2.7.4.1\n");
|
|
}
|