Mega Code Archive

 
Categories / C / Pointer
 

Output address other than value

#include <stdio.h> int main(void) {   int count;   printf("this%n is a test\n", &count);   printf("%d", count);   return 0; }