Solution for Exercise 5-11
ex0511
#include <stdio.h>
int main()
{
printf("The value is %d\n",3);
printf("And %d is the value\n",3);
printf("It's not %d\n",3+1);
printf("And it's not %d\n",3-1);
printf("No, the value is %d\n",3);
return(0);
}
Copyright © 1997-2025 by QPBC.
All rights reserved
