Search:

Type: Posts; User: electRONix

Search: Search took 0.01 seconds.

  1. Thread: devc++ ide

    by electRONix
    Replies
    7
    Views
    1,330

    ME TOO, i've always had a problem indenting in...

    ME TOO, i've always had a problem indenting in DevC++ ... I always spend a couple minutes fixing up my code =/ bleh
  2. Replies
    1
    Views
    1,758

    IE loses focus, Webcam gets blurry

    2 questions...

    1) After i first open up IE, the window loses focus after a few seconds...which is really annoying when I am typing something in google (my homepage).... Any clue what's going on?...
  3. Replies
    29
    Views
    5,536

    $2.61

    gooo silicon valley =d

    91 octane aka v-power at shell

    $2.61 near my house, today just dropped to $2.59. But about 2 exits away from my house i get the same gas for $2.44...


    HMM. maybe i...
  4. Replies
    3
    Views
    2,314

    Hey i have an interview tomorrow!

    What kind of tips did you get I have a phone interview for a company called Actel, [ur]www.actel.com[/url] ... they make FPGA's which is more of an electrical/computer engineering job but they also...
  5. Replies
    4
    Views
    1,087

    found the problem // output the solutions...

    found the problem


    // output the solutions
    cout << " Your true and false answer converted to..." << output
    << endl << "Your integer was squared and the product is..." << number;


    change...
  6. Replies
    8
    Views
    1,510

    couple pointers.. int main(); ... semicolon =d u...

    couple pointers..
    int main(); ... semicolon =d u probably caught that yourself... and instead of doing something like
    x=x*3/2;
    u can do this
    x*=3/2;
    ...
    and in addition to help debug your...
  7. Replies
    8
    Views
    2,701

    this sounds like homework =d

    I'm taking a theory of algorithms class ...
    yeah the third one should be O(nlgn) since the nlgn part grows faster than the linear part. You always want to take the big O of what grows the fastest.....
  8. Replies
    4
    Views
    1,102

    thanks

    oh hey i didn't know about that one, thanks... i still want to know though if there is any way of changing the window shortcut keys
  9. Replies
    4
    Views
    1,102

    Changing window's keys

    Is there any way to add or edit existing windows keys?
    such as windows + e opens up explorer windows + r opens up run... i am one lazy dude and i can't stand lifting up my hand to touch the mouse...
  10. Replies
    6
    Views
    1,595

    Another solution that does the same

    I checked the FAQ, here's another solution works well for windows console applications with C++... I'm not quite sure about its specifics but I'm pretty sure you need to include stdlib...


    ...
  11. Thread: beginner

    by electRONix
    Replies
    22
    Views
    2,096

    here's what to do =)

    Well I'm assuming you can start a new project and have the standard things included in your .cpp file: iostream, main function, namespaces... whatever....

    A list of numbers from 1-10 is probably...
Results 1 to 11 of 14