Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~592 People Reached
Favorite Forums
Favorite Tags
c x 1
c++ x 1
Member Avatar for BobClark

In the 80's there was a Japanese floppy format that put 1.2M on a 3.5 floppy. I believe it had 77 tracks, 8 sectors and 1024 bytes per sector. Not to mention it used a tri-mode drive which is still available today but must be used with a PC bios …

0
39
Member Avatar for Aamit

[code=c] #include <stdio.h> #include <conio.h> int main(void) { unsigned port = 0; int value; value = outp(port, 'C'); printf("Value %c sent to port number %d\n", value, port); return 0; } [/code] It gives error 8 C:\Dev-Cpp\Abc\... `outp' undeclared (first use this function) How to solve this ?? I write function …

Member Avatar for BobClark
0
553