Search:

Type: Posts; User: fanaonc

Search: Search took 0.00 seconds.

  1. Thread: pointers

    by fanaonc
    Replies
    3
    Views
    2,118

    pointers

    Im writing a program which is being implemented as a singly linked list. I am having trouble with one of the functions.

    The funtion will malloc space for a new block and for the key and data...
  2. writing a program called tail like the one in unix

    Hi can someone help me. I have to write a program called tail that will read lines from a file until it comes to the EOF, then the program should print out the last n lines of input. Its similar to...
  3. Thread: exp() function

    by fanaonc
    Replies
    7
    Views
    1,644

    exp() function

    iIhave to write exp() from math.h . Can someone please tell if this would work ?

    double exponent(double x)
    {
    int i, j , p;
    j =1;
    p= 2.7182818

    for( i =1 ; i <= p; ++i)
    ...
  4. Replies
    2
    Views
    1,246

    Arrays..and arguments

    Hi can someone please help me?

    I have to place the following strings "pow", "sin","exp", "cos" in the array recieved as argument.


    /*
    * getop.c
    *
    * gets next token: operator or numeric...
  5. Replies
    1
    Views
    1,697

    bitwise operators

    I have write a program that simulates a calculator. One of the operations the calculator has to do is the inclusive OR | (bitwise operator). It should also work for positive and negative numbers....
  6. Thread: Binary

    by fanaonc
    Replies
    11
    Views
    1,159

    Binary

    Hi !!

    I have to write a program that will take decimal integers and convert them into binary values. They should also convert the negative numbers. Can someone please give advice on how I can do...
Results 1 to 6 of 6