diff --git a/csci218/Lect/ex5InClass.c b/csci218/Lect/ex5InClass.c index 1c06d30..392a756 100644 --- a/csci218/Lect/ex5InClass.c +++ b/csci218/Lect/ex5InClass.c @@ -28,6 +28,8 @@ int main(void) { //y = x++; //int z = ++x; + y = ++x; + z = ++x; //printf("x = %d, y = %d, z = %d , nameOfAccountHolder = %s \n", x, y, z, nameOfAccountHolder); diff --git a/csci218/Lect/ex5InClass.out b/csci218/Lect/ex5InClass.out index 658df72..27ef795 100755 Binary files a/csci218/Lect/ex5InClass.out and b/csci218/Lect/ex5InClass.out differ