Search Results

Showing results 1 to 40 of 1000
Search took 0.08 seconds.
Search: Posts Made By: jephthah
Forum: DaniWeb Community Feedback 3 Days Ago
Replies: 6
Views: 239
Posted By jephthah
she's not supposed to be gone so long.

i miss getting beat up by her.

:(
Forum: Geeks' Lounge 3 Days Ago
Replies: 21
Views: 689
Posted By jephthah
i had some dude i knew from the coffee shop always trying to push his Book of Urantia on me. he was weird. i finally took the book, and looked at it one night. it was about as batshit loony...
Forum: C 3 Days Ago
Replies: 2
Views: 245
Posted By jephthah
you've got a lot of issues. for instance, these lines:

mino - minn = 30;
mino - minn = 60;
mino - minn = 00;

you can't make assignments like that. i'm having a really hard time following...
Forum: C 3 Days Ago
Replies: 6
Views: 233
Posted By jephthah
with all the solid professional compilers and dev environments out there -- many of them absolutely free -- why anyone, anywhere still uses this pile of non-standard crap of a compiler, is beyond...
Forum: Geeks' Lounge 3 Days Ago
Replies: 21
Views: 433
Posted By jephthah
I'd bring Dani, the cscgal.
Forum: DaniWeb Community Feedback 3 Days Ago
Replies: 8
Views: 365
Posted By jephthah
don't do it.

it's a trap.
Forum: DaniWeb Community Feedback 3 Days Ago
Replies: 53
Views: 1,897
Posted By jephthah
is it just me, or does kaninelupus always seem to be the guy shouting "me-too" every time the attention is directed away from him?
Forum: C 3 Days Ago
Replies: 5
Views: 582
Posted By jephthah
hi, NAIK.

did you try this (http://en.wikipedia.org/wiki/Academic_dishonesty)?
Forum: C 6 Days Ago
Replies: 2
Views: 256
Posted By jephthah
i really want to help you, but your code is painful to look at. please repost it and enclose your code within tags.

always use good coding practice like proper indention of code blocks,...
Forum: DaniWeb Community Feedback 6 Days Ago
Replies: 53
Views: 1,897
Posted By jephthah
i think i'm going to go visit all of Bob's prior posts and upvote them all.
Forum: Geeks' Lounge 8 Days Ago
Replies: 21
Views: 689
Posted By jephthah
i am astounded at the level of credulity evident in this thread.
Forum: Geeks' Lounge 9 Days Ago
Replies: 21
Views: 689
Posted By jephthah
mean old u.s. always hiding the goods from the rest of the world.

you should meditate on over to the other side of the universe and bring back some super duper ubar technology.

that'll show...
Forum: DaniWeb Community Feedback 9 Days Ago
Replies: 53
Views: 1,897
Posted By jephthah
looking at the answers you have given to others


-- "Shut down your PC for 30 minutes every 4 hours"

-- "Save every 20 minutes when playing on-line games"

-- "You could have a miss-match or...
Forum: Geeks' Lounge 9 Days Ago
Replies: 17
Views: 927
Posted By jephthah
that video is awesome. i cant see it here at work, but i hope you linked the one with the cool musical score.

i'm pretty certain he's not (just) drunk though. probably high on pure ether, or...
Forum: C 25 Days Ago
Replies: 1
Views: 356
Posted By jephthah
if you would like to get a meaningful response, please consider the following:

How to Ask a Question (http://support.microsoft.com/kb/555375)

Please Use Code Tags...
Forum: C 25 Days Ago
Replies: 2
Views: 190
Posted By jephthah
i don't know what you're talking about, and i'm certainly not going to email you anything.
Forum: C 25 Days Ago
Replies: 3
Views: 195
Posted By jephthah
you can't do this:
if (ch == *my_word ||*my_word2 || *my_word3)

you have to specify what you're testing for each OR'ed condition.
if (ch == *my_word || ch == *my_word2 || ch == *my_word3)
Forum: C Oct 7th, 2009
Replies: 6
Views: 479
Posted By jephthah
Hi, tgir.

lets see if we can help. I believe your question is how to access 3x3 two-dimensional array. does that sound accurate?

also, i'm just curious, what engineering school do you go...
Forum: C Oct 7th, 2009
Replies: 7
Views: 287
Posted By jephthah
you need to post a question if you want an answer.
Forum: C Oct 5th, 2009
Replies: 4
Views: 355
Posted By jephthah
and quit assuming everyone on here is a "sir". sexist language was deprecated last century. get with the program.
Forum: C Oct 5th, 2009
Replies: 7
Views: 287
Posted By jephthah
when you 'getch' you're taking the next character off of the input queue for processing.

this assumes once you've processed it, you're done with it, and will (probably) eventually want to get...
Forum: C Oct 5th, 2009
Replies: 1
Views: 275
Posted By jephthah
no one's going to give you complete code for anything.

but here's a snippet:

while(1)
{
// do stuff here
}
Forum: DaniWeb Community Feedback Oct 5th, 2009
Replies: 91
Views: 6,095
Posted By jephthah
i think your changes are inspired by a lot of good ideas :)

but like some other i also think it has added the perception of too much clutter.

i think the most grievous offender is the row of...
Forum: C Sep 3rd, 2009
Replies: 8
Views: 366
Posted By jephthah
the function, max, needs to be an int.

do not put 'int' in the arguments when you call the function.
Forum: C Sep 3rd, 2009
Replies: 8
Views: 366
Posted By jephthah
void max(...

has no return type (it's void) but you're trying to return integers. and yet, you have the function attempting to assign a value to a long integer. why long? change it to int,...
Forum: C Sep 3rd, 2009
Replies: 2
Views: 267
Posted By jephthah
hi, that's a very nice cut-and-paste you've done.

did you use the mouse right-click to paste? or did you use CTRL-C and CTRL-V? i prefer using the keyboard myself, it seems much more...
Forum: C Aug 24th, 2009
Replies: 10
Views: 644
Posted By jephthah
come on, man. that's a legitimate question to ask.
Forum: C Aug 24th, 2009
Replies: 4
Views: 453
Posted By jephthah
i agree that "void main" is to be avoided, but merely calling it "the evil" without explaining why is not going to impress many newbies, since it will always appear to them to work.

Anyhow,...
Forum: Posting Games Aug 24th, 2009
Replies: 23
Views: 2,767
Posted By jephthah
i don't think so.
Forum: C Aug 24th, 2009
Replies: 3
Views: 299
Posted By jephthah
any time.
Forum: C Aug 24th, 2009
Replies: 3
Views: 299
Posted By jephthah
what's "the logic"? FEC is a strategy not a protocol. there are a number of algorithms that could be used.

learn to formulate a proper question, and post it in the proper forum.
Forum: Posting Games Aug 24th, 2009
Replies: 23
Views: 2,767
Posted By jephthah
Forum: C Aug 5th, 2009
Replies: 13
Solved: Return 0;
Views: 730
Posted By jephthah
the main() program can often be called by a parent program. 'return 0;' indicates to the caller (parent) that the main() program executed correctly.

so... generally speaking, the main function...
Forum: Geeks' Lounge Aug 5th, 2009
Replies: 43
Views: 2,634
Posted By jephthah
Forum: C Jul 28th, 2009
Replies: 13
Views: 662
Posted By jephthah
i second that ^ :$

Salem gave him (+) that far outweighed any (-) you and i gave.
Forum: C Jul 28th, 2009
Replies: 3
Views: 375
Posted By jephthah
alberton, generally speaking you can't just go and grab some missing header file off the interwebs and expect it to work. these types of headers are often built for your system, and even if you ...
Forum: C Jul 28th, 2009
Replies: 10
Views: 1,071
Posted By jephthah
you dont know what what means? casting? start from the beginning of Tom Gunns code snippet:

'd' is a double (floating point) variable containing 23.4.

'w' is a double variable set to the...
Forum: C Jul 28th, 2009
Replies: 16
Views: 741
Posted By jephthah
lets look at the program you have modified and get rid of some obvious errors.

(1) you dont have a "compile error". the program you posted (the second one) compiles without any error even though...
Forum: C Jul 27th, 2009
Replies: 13
Views: 662
Posted By jephthah
must not be too urgent.

you havent given us anything to review.
Forum: Posting Games Jul 25th, 2009
Replies: 23
Views: 2,767
Posted By jephthah
nuh uh, you did.
Showing results 1 to 40 of 1000

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC