Recent content by carlborg

  1. C

    CLEO Help Stealth Hack Best Settings

    where you got this?
  2. C

    Untagged Release [0.3.7/0.3.DL/Source] mod_sa s0beit DP Light PL 3.1

    ugh my sobeit freezes the game and its not just this one, menu doesnt show up either when pressing F2 , my camera gets frozen and i cant move.... what can i do?
  3. C

    Untagged Release SobFoX Project v0.0.0.4

    how to disable no fall pls?
  4. C

    m0d_sa Release [Mod Sobeit] OverLight v3 (with source code)

    what is the reconnect key in case someone kicks me?
  5. C

    creating a C++ programm

    #include <stdio.h> #define TEMP 120 int main(void) { int temperatues[TEMP];  // making the array called temperatues of 120 int total = 0; int count = 0; float average; for (int i = 0; i < 120; i++) // asking user for 120 numbers and save them in array { printf("Enter atleast 120...
  6. C

    creating a C++ programm

    bump help pls
  7. C

    creating a C++ programm

    i did not test your programm since your using iostream and conio.h and i made this part #include <stdio.h> int main(void) { int temperatues[120]; // making the array called temperatues of 120 for (int i = 0; i < 120; i++) // asking user for 10 numbers and save them in array {...
  8. C

    creating a C++ programm

    thanks for replying, can you also comment it so i can understand?
  9. C

    creating a C++ programm

    chill man im trying to learn c++ , if i wanted my homework done i would go and copy man , less time taken
  10. C

    creating a C++ programm

    Hey basically i need help creating this program in the simplest form of c++ -user need to enter the hourly temp of a furnace -temp should be stored in an array -maximum readings - 120 -range of 50 - 1000 degrees -if -1 is entered the program stops taking readings -the program stops taking...
  11. C

    C++ learning help pls

    thanks for this guys , could you comment each important line so i can have more to base on? thank you very much :)
  12. C

    C++ learning help pls

    i edited a bit the first program to this #include <stdio.h> int main(void) { int input; int numberofinputs; int smallestnumber = 0; printf("Enter the total numbers you wish to enter...."); scanf_s("%d", &numberofinputs); printf("Enter the numbers\n"); for (int i = 0; i <...
  13. C

    C++ learning help pls

    hey that worked thanks :) also now i have another question split in 2 things a) write a program that requests the user to enter several integers then prints the smallest number, Assume that the first value to be read specifies the number of integers to be processed and is therefore not the one...
  14. C

    C++ learning help pls

    hey im doing a school assignment and i would like some help please.. I basically need to write a progam that asks the user to input three non zero integers and determine and print if they could be the sides of a right angled triangle... This is what i did #include <stdio.h> int main(void)...
Top