[ create a new paste ] login | about

Link: http://codepad.org/kROgOoqk    [ raw code | output | fork | 3 comments ]

C, pasted on Apr 3:
1
2
3
4
5
#include<stdio.h>
void main()
{
    printf("%i", 3+4);
}


Output:
1
7


Create a new paste based on this one


Comments:
posted by cumi on Sep 9
#include <stdio.h> void main ("%i", 3 + 4)
reply
posted by fredburks on Apr 20
#include<stdio.h>
void main()
{
printf("%i", 3+4);
}
reply
posted by fredburks on Apr 20
#include<stdio.h>
void main()
{
printf(3+4);
}
reply