|
| | #1 (permalink) |
| Registered User Join Date: Jan 2004 Location: Central Florida
Posts: 180
| C programming Question Hey guys, not sure if it's ok to post topics about C since this is primarily web development discussions, but if anyone has firm understanding of binary searches on arrays using recursive functions and loops, let me know please. I could really use the help, thanks. |
| | |
| | #3 (permalink) | |
| edits every post Join Date: Nov 2005 Location: Canada
Posts: 506
+1 Internets | Quote:
| |
| | |
| | #6 (permalink) |
| Legendary Join Date: May 2002
Posts: 2,917
| MODEL SMALL IDEAL STACK 100H DATASEG MSG DB 'This thread does not deliver!', 13, '$' CODESEG Start: MOV AX, @data MOV DS, AX MOV DX, OFFSET MSG MOV AH, 09H INT 21H MOV AX, 4C00H INT 21H END Start
__________________ Lumie: There are no cancers of the heart. Aychamo: http://www.emedicine.com/med/topic280.htm |
| | |
| | #7 (permalink) |
| ex scientia lux Join Date: Nov 2004
Posts: 546
| I'll hijack this since the original poster hasn't responded. I'm working on creating a class and using it to produce a basic HTML link ( tag) for a web page link. I'm fairly sure I've got the class working properly but since I'm a neophyte when it comes to classes, I haven't be able to write a functioning main, anyone have an idea? Code:
|
| | |
| | #8 (permalink) |
| Registered User Join Date: Feb 2002 Location: Georgia
Posts: 333
| this is it in java... but same concept Code:
__________________ Archimonde |
| | |
| | #10 (permalink) |
| Administrator Join Date: Dec 2004 Location: ftw tx
Posts: 293
+4 Internets | if you are asking how to use a class: assuming WebLink.h/.cpp is where your class is stored #include "WebLink.h" void main() { CWebLink myLink; myLink.SetAddress("www.suckballs.com"); myLink.SetDomain("thedomain"); myLink.SetDisplayText("MyLink"); etc.. } |
| | |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
| |