Skip to content

Instantly share code, notes, and snippets.

@Codeplaza
Created December 12, 2013 13:43
Show Gist options
  • Save Codeplaza/7928140 to your computer and use it in GitHub Desktop.
Save Codeplaza/7928140 to your computer and use it in GitHub Desktop.
Quiz 4.0
#include <stdio.h>
int main()
{
char m = 39;
char n = 43;
char o = 78;
char p = (m * n) / o;
printf ("%d ", p);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment