mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2025-01-02 19:29:21 +00:00
1 line
402 B
C++
Executable File
1 line
402 B
C++
Executable File
/* Conformance Test 2.7.3.2: Ensure char variables are implemented as */
|
|
/* unsigned 8-bit integers */
|
|
main ()
|
|
{
|
|
char a;
|
|
int i;
|
|
|
|
for (i = 0; i < 256; i++)
|
|
{
|
|
a = i;
|
|
if (a != i)
|
|
goto Fail;
|
|
}
|
|
|
|
printf ("Passed Conformance Test 2.7.3.2\n");
|
|
return;
|
|
|
|
Fail:
|
|
printf ("Failed Conformance Test 2.7.3.2\n");
|
|
}
|