Search:

Type: Posts; User: jofrisutanto

Search: Search took 0.01 seconds.

  1. Replies
    12
    Views
    1,761

    Well, i thought it would be better if we learn C...

    Well, i thought it would be better if we learn C using some more standardised code?
    I mean like this one:


    #include <stdio.h>
    #include <stdlib.h>

    #define BOILING 212 /* degrees...
  2. Replies
    13
    Views
    16,349

    Even though if you fix that error, i think you're...

    Even though if you fix that error, i think you're getting runtime error there.
    Here is how it should have done. Look thoroughly, and try to understand.



    #include<stdio.h>
    #include<koolplot.h>...
  3. Replies
    13
    Views
    16,349

    can u get the most simple graph to work? ...

    can u get the most simple graph to work?



    #include<stdio.h>
    #include<koolplot.h>

    int main()
    {
    Plotdata x(0,90);
  4. Replies
    13
    Views
    16,349

    I think there is some problem with the source...

    I think there is some problem with the source code though.
    -The plotdata is case sensitive.
    So, it should be Plotdata
    -Um.. I don't know what u're assigning to your Y-Axis. I think you shouldn't...
  5. Replies
    13
    Views
    16,349

    Maybe i can help out. Whats the error when u...

    Maybe i can help out.
    Whats the error when u compile it?
  6. Replies
    11
    Views
    1,390

    Next time, you might want to shorten your code by...

    Next time, you might want to shorten your code by initialize all of the variable value. Like this:



    #include <math.h>
    #include <stdio.h>

    int main ()
    {
    double time = 60 , g =32.260, pi =...
  7. String Returning Function Problems.....

    Can somebody give me a clue in this?
    I'm trying to make up a function that will return a string value to the main function.. Here is my best attempt on doing so.



    #include <stdio.h>

    char*...
  8. Replies
    5
    Views
    8,700

    Hey, thanks. I've solved my problems now. :)

    Hey, thanks.
    I've solved my problems now. :)
  9. Replies
    5
    Views
    8,700

    Oh yeah, this is the example source code. ...

    Oh yeah, this is the example source code.


    #include <koolplot.h>

    int main()
    {
    plotdata x (-315.0,45.0), y = sin ( x * 3.14 / 180), z = cos (x * 3.14 / 180);
    breakplot (x,y);
    x << x;
  10. Replies
    5
    Views
    8,700

    I've read the manual there, and i figured that we...

    I've read the manual there, and i figured that we need to use breakplot(a,b) to unlink several graph, and also how to insert new graph inside the koolplot. I also looked at some examples there. But...
  11. Replies
    5
    Views
    8,700

    Koolplot 2d Graph, how to use it???

    Hi everyone. I'm new user in this forum and also newbie on C Programming. Right now, i am using Quincy 2005. I want to know wether there is somebody can help to teach me on using koolplot graph?? I...
Results 1 to 11 of 11