The user enters a number. Print the entire number of this number, each with a new line. Example
432567
four
3
2
five
6
#include "stdafx.h" int _tmain(int argc, _TCHAR* argv[]) { int A,i; printf("Vvod chisla A\n"); scanf("\n%d",&A); printf("%d\n",A); return 0; }