InterviewSolution
| 1. |
Solve : multiply? |
|
Answer» actully it was shiped on 3 1/2 inch disks
Quote from: BC_Programmer on August 17, 2009, 01:37:54 AM Not true. Many corporate environments are still using DOS based solutions- why? Because they work. your point? It's not new DOS based development, the companies are using the same DOS-based solution they always have, even though it both isn't supported AND in many cases, the software firm that created it has a windows version. That has nothing to do with programming DOS, since the programming for said applications was done years ago- they work, and that's why the companies stick with them.lets count the advanadges of programming in dos shall we o high speed screen writes directly to screen memory makes it faster then GDI o your program alwasy has priorty and some other program cant kill it o easyer to write TEXT because you dont have to deal with the CreateFont() function and its infinte parameters o you dont have to worry about letting other programs run; you can take all the PROCESSOR power o you dont have to worry about redrawing evreytime somone moves the window off screen o you dont have to worry about the user resizeing the window Quote o high speed screen writes directly to screen memory makes it faster then GDI but you need custom code for every adapter type and video mode. DirectX is more suited if you need speed then GDI. Quote o easyer to write text because you dont have to deal with the CreateFont() function and its infinte parametersCreateFontInDirect() is what I use, along with the LOGFONT structure. *well, actually, that's a lie, since I wrapped the various GDI functions into classes ages ago, so now I deal instead with CFont, CBrush, and CPen objects. Quote from: BC_Programmer on August 24, 2009, 06:14:00 PM *well, actually, that's a lie, since I wrapped the various GDI functions into classes ages ago, so now I deal instead with CFont, CBrush, and CPen objects.thats a good idea as for direct X no good because the code needs to compile on WIN32 and win16Real programmers use FORTRAN! ::: runs away :::Quote from: Aegis on August 24, 2009, 06:21:01 PM Real programmers use FORTRAN! an excellent point aegis, Aegis .EQ. cool yay, I can write fortran! fortran started in 1956 is that old enough? Code: [Select]mov ax,4h int 10h xor cx,cx PLOOP: mov dx,100 mov ah,0ch mov al,3 int 10h inc cx cmp cx,320 jl PLOOP xor ax,ax int 16h mov ax,3h int 10h a real programmer programs in ASM |
|