Search My BLOG

Free Translater For All Languages

 

Mobile Phone Location Tracker

phone number location and operator in India Just enter 10 digits phone number in the search box and click on Trace.
Enter 10 digits phone number to trace:
All The Best !!!!!

Thursday, November 12, 2009

C Program to Print a Character without using any Output Statements


This program can be used to print character without using any output statements. This program only works in 16-bit mode since it directly writes to VDU Memory.

#include
#include
void main()
{
char far *p=(char far *)0xb8000000;
*p=’A';
getch();
}

No comments:

Post a Comment