[ create a new paste ] login | about

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

C, pasted on Feb 17:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include<stdio.h>
int main()
{
	float a=1.7;
	if(a<1.7)
	{
		printf("c\n");
	}
	else
	{
		printf("c++\n");
	}
	return 0;
}


Output:
1
c++


Create a new paste based on this one


Comments: