Recent content by kraze_101

  1. K

    i need some help plz

    #include<conio.h>-- whats this file for'?
  2. K

    i need some help plz

    somewhere i think i gotts use the % to get like the remainder of the feet and that little bit of feet that will remain has to be converted to inches
  3. K

    i need some help plz

    hey thanx man i got it to work but the calculations are all wrong i dunno why? here's the code=-- #include<stdio.h> #include<math.h> const double FEET_PER_CENTIMETER=0.033; const double INCHES_PER_CENTIMETER=0.4; const double CENTIMETERS_PER_FOOT=30.3; int main(void) { int cent, centf...
  4. K

    i need some help plz

    one prob!! #include<stdio.h> #include<math.h> const double FEET_PER_CENTIMETER=0.033; const double INCHES_PER_CENTIMETER=0.4; const double CENTIMETERS_PER_FOOT=1.0/FEET_PER_CENTIMETER; int main(void) { int cent, centf, centi; printf("COnvert Height Into Feet & Inches!\n")...
  5. K

    i need some help plz

    i was thinking bout if like in that long line with all the operations going on if it can possibly be split so that one line can calculate the remainder and one line for the conversion to inches i dunno if that is possible and then floor wont hav to be used just a suggesion
  6. K

    i need some help plz

    #include<stdio.h> #include<math.h> const double FEET_PER_CENTIMETER=0.033; const double INCHES_PER_CENTIMETER=0.4; const double CENTIMETERS_PER_FOOT=30.3; int main(void) { int cent, centf, centi; printf("COnvert Height Into Feet & Inches!\n"); printf("Please Enter Your Height In...
  7. K

    i need some help plz

    sngm0375@munro question4]$ gcc Height.c -o height /tmp/ccq2PU8I.o(.text+0x88): In function `main': : undefined reference to `floor' collect2: ld returned 1 exit status" thats the error sory i was excited to try it out....yea i changed it to 30.3 and it gave me the error above..
  8. K

    i need some help plz

    /* This program converts height in centimeters and displays it into height in centimeters, feet, inches.*/ #include<stdio.h> #include<math.h> const double FEET_PER_CENTIMETER=0.033; const double INCHES_PER_CENTIMETER=0.4; const double CENTIMETERS_PER_FOOT=1.0/FEET_PER_CENTIMETER; int...
  9. K

    i need some help plz

    yea i compile using gcc
  10. K

    i need some help plz

    whats gonna be the initializer element?
  11. K

    i need some help plz

    arite i did it and it says that initializer element is not the same... by the way im using putty to connect to my school and we use vim .
  12. K

    i need some help plz

    sorry "called object is not a function"
  13. K

    i need some help plz

    it said that in the second line there that its not a called function i think its because of the 1 because its in red .
Back
Top Bottom