Search:

Type: Posts; User: RAJJUMOTE

Search: Search took 0.01 seconds.

  1. Thanks misterMatt for giving link it seems...

    Thanks misterMatt for giving link
    it seems interesting
    will study now
  2. Thank u all for replying. I think u mean that...

    Thank u all for replying. I think u mean that only thing i can learn is how to use function and i have to ''invent" the way to use it to get some complecated rendering. thanks for replaying.
  3. Friends, I just wanted to know is there any way...

    Friends, I just wanted to know is there any way we could learn to use such sin() , cos() functions systematically or we have to do it by trial and error method? Plz help me.

    If...
  4. Thank u bubba & salem for giving reply. But i...

    Thank u bubba & salem for giving reply. But i think that i can't tell u what i wanted to say. here is the piece of code i have refered. It uses SDL to draw on screen some wavy animation.



    ...
  5. Should i have to understand those sin(), cos() tricks?

    Hello frnds. I m going to make a nice text effect and animation for my friends birthday. while i was reffering some code, i found that they have used some sin(), cos() technique to animate sprite on...
  6. Replies
    13
    Views
    45,622

    Friend will it work for d = 98.7 ? i think we...

    Friend will it work for d = 98.7 ?

    i think we should do it as:


    #include <math.h>
    int round_to_even ( double d )
    {
    float rv = d - (int)d;
    if ( (rv < 5 )
  7. Replies
    12
    Views
    1,278

    do { fscanf(fp, "%s", name); ...

    do
    {

    fscanf(fp, "%s", name);

    printf("%s \n", name);

    }while((currentCharacter = getc(fp)) != EOF);
  8. Replies
    10
    Views
    2,662

    Thanks to all friends

    Thanks to all friends
  9. Replies
    10
    Views
    2,662

    why scanf() dont working?

    #include <stdio.h>
    #include <conio.h>

    void main()
    {
    int n;
    char ch;
    clrscr();

    do
  10. Replies
    1
    Views
    2,021

    What means Granularity?

    I want to know what mean by granularity in graphics.
  11. Thread: for loop

    by RAJJUMOTE
    Replies
    4
    Views
    1,081

    You can use nested for loop for that for(...

    You can use nested for loop for that



    for( N = 1; N <= 5; N++ ) {
    for(p=1;p<=3;p++){
    x = N * pow( b, p );
    k = N * 10 * pow( b, p);
    l = N * 100 * pow( b, p);
    }
  12. Replies
    2
    Views
    1,447

    its #include" my friend not "#incluse". if...

    its #include" my friend not "#incluse".
    if problem persist, confirm stdio.h file in /include directory.

    You can get a sample graph program in /examples drectory as barchart.c
  13. Anybody know good programming tutorial for SVGA programming thru DOS?

    Anybody know good programming tutorial for SVGA programming thru DOS?

    plz help me.
  14. How to trap ESC key pressed without getch()?

    Friends i m doing a program in which user enters as many numbers as he want
    until he press ESC key.
    Do you know any function like kbhit() to get know whether ESC is pressed or
    not. plz help me....
Results 1 to 14 of 14