Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+4
Strength to Decrease Rep
-1
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
~32.4K People Reached
About Me

I love computers with all my heart. I also like cooking and movies. I don't like sports much but that means I'm not rooting for your enimy ether so no sas.

Interests
I am overly obbsesed with computers... Thats about it.
PC Specs
Windows XP SP3 Code::Blocks = C++ (For Win) Digital Mars Compiler Acsses to GCC No Internet everthing…
Favorite Forums
Favorite Tags
c++ x 159
cui x 30
cli x 9
os x 8
Member Avatar for cpsusie

Alright guys, I'm a total n00b to assembly. NOTE: I am not a student -- I am a professional lawyer who loves to tinker with the computer and waste time. Using Visual Studio 2008 Express (C++), I actually managed to write a function in assembly language that evaluates a character, …

Member Avatar for Zack_7
0
11K
Member Avatar for MasterHacker110

So i have bought this book about assembly language but they use Netwide assembler and i dont have an IDE / COmpiler for it. I have looked at NASM origanal website but i din't fid any IDE. I use FASM, i dont know if NASM will work with FASM. Any …

Member Avatar for Дмитрий_4
0
2K
Member Avatar for Zssffssz

I Want To Make A Utility Like The Old DOS Command "rdisk" In C++. The Things I Want It To Be Able To Do Are: WIN: Be Able To Specify The Drive Letter (Like rdisk's /:Z) UNIX: Be Able To Specify The Mount Point (/mnt/rdisk or /media/somthing, etc) BOTH: Make …

Member Avatar for Zssffssz
0
898
Member Avatar for Zssffssz

My school has banned any system call (I even brought my own copy of command.com and cmd.exe) [B]but[/B] FreeDOS's FreeCOM still works (very well at that). Is there a way to make it that when I call the system function it makes the call to FreeCOM (Whitch will be bundled …

Member Avatar for Zssffssz
0
123
Member Avatar for Zssffssz

Im writting a very simple command-line. I want the > Charecter to come up every time a command ha finished what it's doing (easy) AND when the user presses enter with nothing on it. For example ($ is currssor) I want this: [CODE]> >$[/CODE] Not this: [CODE]> $[/CODE] How would …

Member Avatar for tom12
0
191
Member Avatar for Zssffssz

Just want to see if there is a thing to turn oh "Test" to binary/base 2 stuff. This: [CODE]muffins = 12+16%2[/CODE] I think is sortof what I'm looking for but it chops of whatever's bigger than 2.

0
111
Member Avatar for Zssffssz

I'm trying to write an echo like thing doing this : [CODE]> echo Muffins Muffinst > echo two muffins two muffins[/CODE] The problem Is that the program isn't being started from command line, The > is my programs input prompt (trying to write a very simple command line) How would …

Member Avatar for WaltP
0
255
Member Avatar for myrongainz

i have done coding for the board but now I'm stuck on getting randomizing ship placement for player1 and player2 So far for ship placement all i have is the function prototype. [CODE]#include <stdio.h> #include <stdlib.h> #include <time.h> int placeship( int x, int z[ ][ 10 ] ); // function[/CODE] …

Member Avatar for Lerner
0
2K
Member Avatar for Zssffssz

Earlier when I came here I had only a minimal set of utilities and a WinXP comp.. Now i'm here and serious, with kubuntu (and Internet!!!!) and willing to learn all of that dd, mov, eax, and bochs stuff. Here is my delemia: I have a C++ Program, have no …

Member Avatar for Zssffssz
0
333
Member Avatar for Zssffssz

I have been given a task to send a file (.odt) via e-mail using no external libraries (stuff that doesn't come with GCC on ubuntu) and not using .NET. Compiler: GCC/G++ (with limited access to ACK) OS: Kubuntu 11.10 32 Bit IDE (like it matters): Code::Blocks Help Point Me in …

0
58
Member Avatar for Zssffssz

When trying to cut down possible memory leaks in my program, I noticed a reoccoring pattern: Move Delete closer to new, repeat, remOve the function that uses it and move code to main, move a few things to global, replace some stuff with arguments and return values, and in the …

Member Avatar for MastAvalons
0
133
Member Avatar for stakeMyHeart

please help me. i dont understand this: Create routine to display * based on AL w CR AL=07 CALL 120 & RET output: ***** my professor said cr is call routine, that's all, he didnt tell us what does that mean help me please

Member Avatar for Zssffssz
0
199
Member Avatar for Zssffssz

In my program (not the compiler) how would I implement a 'tag' system, for example : dpkg [B]-i[/B] hello I am not skilled enough to go through gcc's or dpkg's sources so sone help would be nice.

Member Avatar for rubberman
0
69
Member Avatar for Zssffssz

Is it possible to make an array of doubles like a c-style string to make a bigger number? Or is an array of chars a special thing to a compiler?

Member Avatar for adityatandon
0
263
Member Avatar for Zssffssz

Im Talken About The Basic (As in Simple not BASIC) DLL not Win32/OS/2 Kind. I Want The Dlls for the program to be in the 'bin' Directory thats is in the same folder as the .exe. Is there a simple (Not Moving Kansas) way to do this?

Member Avatar for Zssffssz
0
149
Member Avatar for Zssffssz

What would happen if I (somehow) made an enum bigger than unsigned int? Each item in one is assigned a numerical value, I'm guessing that is unsigned int. Would it be boring like an error message or fun? Knowing what's allowed with naming the values there is more than enough …

Member Avatar for vijayan121
0
127
Member Avatar for Zssffssz

I want my program to not rely excessively on external stuff as possible so could someone help/point me in the right direction to hand writing a .wav codec? Or whatever codec would be the easiest. Sorry I was gone so long, family.

0
100
Member Avatar for Zssffssz

I want to make a program that makes and extracts tar files from scratch a other sit said that using wikipedias specifications it's easy but I don't know how to do half that stuff! Like makeing the thing to the right size moving where it writes and reads to. Making …

Member Avatar for Clinton Portis
0
90
Member Avatar for Zssffssz

I am making a staid lib that does some simple math but whenever I go to do something in time_t, time64_t, or bool it gets a "expected ; before FUNCTIONNAME." how would I use time_t, time64_t, and bool in a static lib?

Member Avatar for Narue
0
71
Member Avatar for Zssffssz

well here is something interesting: How many calculations, math, movements, assignments, can I do in the glbal area? EX: [CODE]Header/using blah int vap = 7; int pav =2; int sasd = 0; (sasd=(vap*pav));[/CODE] Would the last line work? Or do I have to declare a vareable to do any math/calculations? …

Member Avatar for mike_2000_17
0
157
Member Avatar for Zssffssz

Ok my complex fortran program has an error on this line: [CODE]MON=HOLD-TRANS(reg:rag)[/CODE] With an error Of: Incompatible rank asinement of (0/1) My usual hack with file io make fortrans oldest feature, speed, toast. Help :( Edit: oh yagh: Mon is complex Hold is complex Trans is real

0
115
Member Avatar for Zssffssz

Well really simple: I want to compile for my Pentum 4 and not a WIN32 Console App. What tag/thing would I use for this?

Member Avatar for gusano79
0
127
Member Avatar for Zssffssz

I want to get unix time in my program, google just brought up how to get time on a unix system (I'm on a dos/windows system). Is there an easy (can fit in less than 20 lines of non-system dependent functions and without any API or WIN32 [unless simple] functions) …

Member Avatar for vijayan121
0
797
Member Avatar for Zssffssz

I need to read one wide Charecter(wchar_t) from a file once but it says: "ambiguous overload for 'operator>>' in 'WER >> mont' The part that also confuses me is that it writes the Charecter just fine. It is only one Charecter not a string if that makes a difference. Thanks.

Member Avatar for Zssffssz
0
418
Member Avatar for Zssffssz

Here's me error:"invalid conversion from 'char*' to 'char'. This is much different than what I found on google because I'm using actual pointers not return values n' stuff. Well heres a watered down version of the code: [CODE]char* LOCK = new char[501]; char ret[501] = "this is fine in program"; …

Member Avatar for Zssffssz
0
531
Member Avatar for Zssffssz

Well I want to make a DLL but all of the tutorials online seem to focus tword GUI programing or go a little too fast. Can anyone explain it? As far as I have seen it's syntax resembles resource files. And what makes it a '[I]Dynamic[/I] Link Libray' as in …

Member Avatar for mike_2000_17
0
308
Member Avatar for Zssffssz

I already know how to call a program an make it run inside of my program (with no communication between the two). But I need a way too call a separate program from mine and have it run separately. I looked into the CreateProsses thing but it seems to be …

Member Avatar for Ancient Dragon
0
184
Member Avatar for Zssffssz

Well simple really: Is there any header, libray, dll, etc. that defines Infenity in any way?

Member Avatar for vijayan121
0
110
Member Avatar for Zssffssz

After trying to start writing my long paper "Programing, The Art" I noticed that, getting user imput, conditional statements, using escape charecters, exicuting system commands, and even declaring variables and using them so that they have use; these are all difficult outside of the domain of C and C++, even …

Member Avatar for xfbs
0
241
Member Avatar for Zssffssz

Well its simple: I'making a group of programs that use one file for settings, however not all settings are used for all programs so instead of making another variable is there any way to just throw, let's say the first line to null read the second line feed the third …

Member Avatar for Labdabeta
0
137