Search:

Type: Posts; User: Enigmatic

Search: Search took 0.01 seconds.

  1. Replies
    8
    Views
    1,363

    For the love of god man .. I was not giving you...

    For the love of god man .. I was not giving you attitude ... some people are just naturally nice to others. I do apologise for being polite.

    As for being spoon fed, I never asked for someone to...
  2. Replies
    8
    Views
    1,363

    Yes I have. Next time I have an issue with C...

    Yes I have.

    Next time I have an issue with C and I post on the forum, I will remember to explain myself, both the code and issue I am having with the code better.

    Thanks all the same.
  3. Replies
    8
    Views
    1,363

    Thanks Zuk, the code you provided has work...

    Thanks Zuk, the code you provided has work perfectly for what I required. Just going to read through it to see how it works.

    As for your comments Prelude, a little less negativity would be nice,...
  4. Replies
    8
    Views
    1,363

    Reading from a file

    Hey folks,

    Can someone please help me out with this bit of code I have to read a simple text, it just doesnt work and I cant work out why. Been mulling over this for a few hours now looking at...
  5. Replies
    2
    Views
    1,150

    Thats what I was about to say. Your identifiers...

    Thats what I was about to say. Your identifiers are set up as floating point numbers :


    float a,b,c,d,e,f;

    Yet when you call them in your code, you are accessing them as integers:

    ...
  6. Thread: Registry

    by Enigmatic
    Replies
    4
    Views
    1,071

    Quickest way to get to your registry in Windows...

    Quickest way to get to your registry in Windows 95 and above is to do the following:

    Windows button + R > type regedit

    The registry will automatically open in front of you.
  7. Replies
    9
    Views
    1,150

    Ok, I was a little bored and this kind of...

    Ok, I was a little bored and this kind of interested me [ seeing as I`m doing a C programming course it is something for me to practise on ].

    Had a little play around and came up with a very...
  8. Replies
    9
    Views
    1,150

    Thanks for fixing my compile error, thats going...

    Thanks for fixing my compile error, thats going to come in handy for my course when/if I come accross that problem again I will ken how to fix it.

    As for my maths, I`m correct in multiplying by...
  9. Replies
    1
    Views
    995

    Calculator tutorials

    Anybody know of any good calculator tutorials for C ?
  10. Thread: CPU temp

    by Enigmatic
    Replies
    5
    Views
    2,976

    60-75 degrees is insanly high for an Intel CPU,...

    60-75 degrees is insanly high for an Intel CPU, even AMD's only just touch that under full load, but they are able to handle higher temps anyway.

    Personaly I would run virus and spyware scans,...
  11. Replies
    9
    Views
    1,150

    #include int value; float...

    #include<stdio.h>

    int value;
    float percentage,output;

    value = 150;
    percentage = 0.15;

    int main()
    {
  12. Replies
    3
    Views
    1,019

    Ahhh, I see. thanks for that.

    Ahhh, I see.

    thanks for that.
  13. Replies
    3
    Views
    1,019

    Maths problem

    Hi

    I've come accross a maths thing I have not seen before and can't seem to find it on the internet anywhere so I thought I would ask here.

    a > (a%b)

    I know its asking if a is greater than...
Results 1 to 13 of 13