[ create a new paste ] login | about

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

godneil - C, pasted on Sep 15:
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>

int main() 
{
	char my_data = 9;
	my_data = 9 | 0b00110000;
	
	printf("num is %c", my_data);
	
	return 0;
}


Output:
1
Line 15: error: invalid suffix "b00110000" on integer constant


Create a new paste based on this one


Comments: