All pastes #2127545 Raw Edit

Unnamed

public text v1 · immutable
#2127545 ·published 2012-03-13 05:36 UTC
rendered paste body
#include <stdio.h>

int test = 'test';
char testStr[5];

int main() {
	switch (test) {
	   case 'test':
		printf("here\n");
		break;
	};

	test = ntohl(test);
	strcpy(testStr, (char*)&test);
	printf("%s\n",  testStr);
	return 0;
}