1
0
UAHCode/CPE435/Lab9/test5.c

12 lines
199 B
C
Raw Normal View History

2022-08-28 21:12:16 +00:00
//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;
}