All pastes #76382 Raw Edit

Miscellany

public text v1 · immutable
#76382 ·published 2006-07-01 14:54 UTC
rendered paste body
#include <stdio.h>

int main()
{
    int x;
    scanf("%d", &x);
    printf("%d", &x);
    getchar();
    scanf("%d", &x);
}