#include <stdio.h> int main( void ) { int a, b, c; printf( "%n%s%n%d%n\n", &a, "abc", &b, 123, &c ); printf( "%d %d %d\n", a, b, c ); }