12 lines
199 B
C
12 lines
199 B
C
|
//file: test5 compile as test5
|
||
|
#include <stdio.h>
|
||
|
int main()
|
||
|
{
|
||
|
int x;
|
||
|
if(x == 0)
|
||
|
{
|
||
|
printf("X is zero"); /* replace with cout and include iostream for C++ */
|
||
|
}
|
||
|
return 0;
|
||
|
}
|