Mega Code Archive
Categories
/
C
/
Pointer
Output address other than value
#include
int main(void) { int count; printf("this%n is a test\n", &count); printf("%d", count); return 0; }