[ create a new paste ] login | about

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

C, pasted on Dec 8:
1
2
3
4
5
6
7
8
#include <stdio.h>
int main(void)
{
int n;
n=3+4;
printf("計算結果は%d\n,n")
return 0;
}


Output:
1
2
In function 'main':
Line 7: error: expected ';' before 'return'


Create a new paste based on this one


Comments: