1 2 3 4 5 6 7 | #include "stdio.h" main() { register i=5; char j[]= "hello"; printf("%s %d",j,i); } |
Description :
This is the one stop educational site for all Electronic and Computer students. If you want to learn something new then we are here to help. We work on Microcontroller projects, Basic Electronics, Digital electronics, Computer projects and also in basic c/c++ programs.
#Home #Sitemap #Resources #Terms of Use
Copyright©2012 electrofriends.com All Rights Reserved
Contact:info@electrofriends.com
The output will be:
hello 5
where the command line prompt will be right after the “5″.
Is this a trick question or something?