All pastes #2127541 Raw Edit

Unnamed

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

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

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

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