Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. sadat2001

    how to find integer value for an ascii character

    here is a hellp full coding for ascii codes. just press the the key for which you want to see the ascii code. press enter to terminate the program. void main(void) { char ch; while((ch=getch)!='\r') { printf("%c=%d",ch,ch); } }
  2. sadat2001

    help me develop a good anti virus program

    HI there i am making an boot sector anti virus in C language . i have almost made it i just want you to go through the algorithm and tell me if there is any error or weakness in my algorithm. here is my algorithm. 1. got the boot sector by absread() in an array. 2. searched for IO.SYS and...

Part and Inventory Search

Back
Top