y=4,z=3
z=z%5=8%5=3y=y%3=12%3=0
#include "stdafx.h"#include "stdio.h"#include #define NULL 0int main(int argc, char* argv[]){ int z; float x; int y; z=8; x=20.5; y=12; y%=z%=5; printf("%d \n%d\n",y,z);}y=0z=3
y=0