Skip to content

Instantly share code, notes, and snippets.

@gabrielcesar
Created July 21, 2016 14:28
Show Gist options
  • Save gabrielcesar/f64e8746e79286835df7bd8915c8e473 to your computer and use it in GitHub Desktop.
Save gabrielcesar/f64e8746e79286835df7bd8915c8e473 to your computer and use it in GitHub Desktop.
d) Simple product
/*
* d
* Simple Product
*/
#include <stdio.h>
int main ( void )
{
int a;
int b;
scanf ( "%d", &a );
scanf ( "%d", &b );
printf ( "PROD = %d\n", a * b );
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment