This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

about printf in keil

i got a small problem.
how to view the contents of varible that is displayed by printf in Uvision keil

#include<reg51.h>
#include<stdio.h>
main()
{ int i; scanf("%d",&i); printf("%d",i);

}

how the input varible 'i' is scanned and how and where it is displayed?

PLz help!!