ShareCopy to ClipboardRawPreview#include<stdio.h> #include<conio.h> void main() { int x = 6, y = 4; x = x*y; y = x/y; x = x/y; printf("x = %d and y = %d", x, y); getch(); } MULTIPLICATION00natalie199700 CommentsAdd CommentLog in to add a comment