[ create a new paste ] login | about

Link: http://codepad.org/9cwDppmK    [ raw code | output | fork ]

C, pasted on Aug 23:
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>

int main()
{
    int z;
    int i = 4;
    int x = 6;
    z = x / i;
    printf("z=%.2f\n", z);
    return 0;
}


Output:
1
z=-2600605536166734276399365600207122452187280230282648759074591089604128747642004967714712682703558962720059510979724052341760437844365322045380298380943475339194538292529804439740098088850043130696109467146782570861468359564610025335066760446527280235672101690600849408.00


Create a new paste based on this one


Comments: