Search:

Type: Posts; User: jack1234

Search: Search took 0.00 seconds.

  1. Replies
    8
    Views
    2,743

    Declarations and definitions in C

    Guys what is the difference between declarations and definitions of varibles,functions, structures?
    I understand


    int c;
    int d;
    are examples of declarations and int c=4; is an initilisation...
  2. Replies
    5
    Views
    3,312

    Abstract data type

    I need to write a program that takes in a name of a person and some other descriptions of the person. The program should also do some calculations with the use of different functions eg. calculate...
  3. Replies
    5
    Views
    3,312

    Abstract Data Type(ADT)

    What is an Abstract Data type in C. I could not find any info as it pertains to C programming. Also How do I Implement one.
    Any examples would be great.
  4. Replies
    13
    Views
    1,968

    how can I implement a code that tests the amount...

    how can I implement a code that tests the amount of integers enterd and multiply that integer/s by powers starting at 0. eg 1234 in base 8 would be (1x8*3)+(2x8*2)+(3x8*1)+(4x8*0) (converted to base...
  5. Replies
    13
    Views
    1,968

    convert

    How do I write a piece of code to convert from any base to base 10. I already figured out one to convert from base 10. eg
    1234 in base 5 to base 10.How would that be implemented if that was inputed...
  6. Replies
    13
    Views
    1,968

    oh bases meaning binary, base 3 numbers, octal...

    oh bases meaning binary, base 3 numbers, octal etc(up to 10)
  7. Replies
    13
    Views
    1,968

    base conversion

    Guys I need to write a program that will convert FROM and TO any bases ranging from 2 to 10.
    The program should prompt for the base “converted to” and the base “converted from”.
    Can somebody tell...
Results 1 to 7 of 7