Skip to content

Instantly share code, notes, and snippets.

@Codeplaza
Created December 12, 2013 13:43
Show Gist options
  • Select an option

  • Save Codeplaza/7928140 to your computer and use it in GitHub Desktop.

Select an option

Save Codeplaza/7928140 to your computer and use it in GitHub Desktop.

Revisions

  1. Codeplaza created this gist Dec 12, 2013.
    12 changes: 12 additions & 0 deletions gistfile1.c
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,12 @@
    #include <stdio.h>

    int main()
    {
    char m = 39;
    char n = 43;
    char o = 78;
    char p = (m * n) / o;
    printf ("%d ", p);

    return 0;
    }