- Strength to Increase Rep
- +7
- Strength to Decrease Rep
- -1
- Upvotes Received
- 3
- Posts with Upvotes
- 3
- Upvoting Members
- 2
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
Re: [QUOTE=mohanrobin;470944]ofcoarse linux can be a firewall. linux is a operating system which is free ware. one user can download and upload the os between DSL and SWITCH.[/QUOTE] linux is not freeware, it is open-source | |
Re: Why did you import math near the middle of the code instead of the beginning? | |
Re: The warnings don't really matter, there are usually a few warnings in every application, its the errors that matter. Ruby is a scripting language and Rails is a web development library that is used with ruby | |
Re: It would help if you posted the output you were supposed to have and what output you got | |
Re: Classes don't inherit friends and subclasses can't access base class's private members | |
Re: OH NOES, sex offenders on the internet, in other news the sky is wet and fire is hot, news at 11. "Sex offender" is such a vague term that can mean almost anything, its like saying there are 1 million people that have commited a crime before on myspace | |
Re: Every OS has its set of over zealous fanboys, Windows, MacOSX, *BSD, Solaris etc. Its something that most people would want taken away from every os. | |
Re: its because you are missing the while part of a do while loop do { } while (some condition); | |
Re: [QUOTE=athlon32;900361]You could probably do that in Java or Javascript, those two are very similar to C++, in fact Java practically is C++ I would suggest Java over javascript because it's a real application language, it's totally OOP (so is Javascript, but in a different way) I'm guessing you know java, … | |
Re: If I understand you correctly, you probably want something like [code] if x is None: print "x has no value" [/code] | |
Re: You can just do [CODE] import sys sys.path.append('pythonpathhere') [/CODE] | |
Re: It would help if you wrapped your code in [CODE ] [/ CODE] tags | |
Re: [QUOTE=michinobu_zoned;749613]Go to the website for colleges and universities. Look-up what courses they teach. See if they have like a planned set of courses they have students within their major should take in order for them to graduate. You could either look up what courses computer science majors take, software engineering, … | |
I prefer to write the backend first because thats how I think and it seems more logical to me, what do you prefer? | |
Re: Do you need to read the numbers from a file or from standard input? if you need to read the numbers from standard input, you just need to have a loop where the numbers get entered into an array, then you would loop through them and test to see if … | |
Re: [QUOTE=ddanbe;762795]What is your favorite boolean? true, false, inbetween?[/QUOTE] FILE_NOT_FOUND obviously | |
Re: Its easier to do anti-malware stuff in safemode(press F8 at the splash screen) which turns off everything but essential services | |
| |
Re: [QUOTE=Ancient Dragon;745477]what is "CHR/2" ? If you need 8 random numbers between the values of 0 and 16, then put them in an array. [code] start loop generate random number between 0 and 16 first time the number has been generated ? no, then go back and generate another number … | |
Re: Are you running solaris?, if you are then you will need to execute the .sh file | |
Re: don't use void main(), use int main(). void main() doesn't compile on most compilers and is incorrect according to the standard | |
Re: I wasn't aware *compilers* had gui design tools?, I thought compilers were just to convert human readable source code to machine read able code? | |
Re: [QUOTE=Drycola;679813]I heard that Linux is open-source, meaning that its CODE can be modified by any programmer. My question is: What programming language (C++, ASM, etc) shall I need to edit the source code of Linux, and where can I get the Source code ??[/QUOTE] The linux kernel is written in … | |
Re: [QUOTE=Ancient Dragon;682625] 7) Depends on the situation whether to use dynamic arrays or not. IMO it is better to just use statically allocated arrays for small arrays. Its even better to use std::vector or similar containers in c++ programs than c-style arrays. [/QUOTE] are STL containers faster then c-style arrays? | |
Re: Also, I would use #include <cstdio> and get rid of the void thing in main |