• Congratulations to the Class of 2024 on your results!
    Let us know how you went here
    Got a question about your uni preferences? Ask us here

Search results

  1. D

    Which ATAR calculator's proved to be more reliable ?

    The second link was off by my actual mark by 0.05.
  2. D

    HSC 2016 MX2 Integration Marathon (archive)

    Re: MX2 2016 Integration Marathon This forums so dead...
  3. D

    UNSW 2016S1 Results Thread

    Does this assume that all marks are integers ?
  4. D

    UNSW 2016S1 Results Thread

    app mines 79.5 is this crap ?
  5. D

    UNSW 2016S1 Results Thread

    So how do we see ours?
  6. D

    Medina Suicide Bombing

    “None plots against the people of Medina but that he will be dissolved like the salt dissolves in water.” (Prophet Muhammad reported by Bukhari)
  7. D

    The Code Marathon.

    I don't want to abuse the if statements so ill leave my program broken :P
  8. D

    The Code Marathon.

    My code assumes that only valid inputs are given :P. #include <stdio.h> #include <ctype.h> #define MAX_CHARACTERS 1000 #define MAX_LINE 100 int main(int argc, char *argv[]){ FILE *stream = fopen(argv[1], "r"); if(stream == NULL){ printf("The file %s doesn't exist.\n", argv[1]); return...
  9. D

    The Code Marathon.

    Im pretty sure my program does this? I accidentally wrote 'characters' instead of 'words' though. EDIT: brb
  10. D

    The Code Marathon.

    Do this but with letters. ./triangle 3 A BCB DEFED (Click reply to quote to see how the triangle should look) When the letter reaches Z loop around.
  11. D

    The Code Marathon.

    C code : #include <stdio.h> #define MAX_CHARACTERS 1000 #define MAX_LINE 100 int main(int argc, char *argv[]){ FILE *stream = fopen(argv[1], "r"); if(stream == NULL){ printf("The file %s doesn't exist.\n", argv[1]); return 1; } char file[MAX_LINE][MAX_CHARACTERS]; int...
  12. D

    Does God exist?

    I think he was referring to whether you follow God or not as your deepest desire, not to sure it's a bit ambiguous but I agree with what the man says.
  13. D

    The Code Marathon.

    wanna get knocked
  14. D

    The Code Marathon.

    Don't judge me I solved what porcupine asked for. #include <stdio.h> #include <stdlib.h> #include <ctype.h> #define MAX_WORD_LENGTH 100 int main(void){ char word[MAX_WORD_LENGTH]; fgets(word, MAX_WORD_LENGTH, stdin); int i; for(i = 0; word[i] != '\n'; i++){ } // count how many...
  15. D

    The Code Marathon.

    I can't figure out the right bottom arm of the x oh well :P #include <stdio.h> #include <stdlib.h> #include <assert.h> int main(int argc, char *argv[]){ assert (argc == 2); int count = 0; for(int y = 0; y < atoi(argv[1]); y++){ count = count + y; for(int i = y; i < atoi(argv[1]) - 1...
  16. D

    The Code Marathon.

    Maybe you should assert that argc == 2 rather than > 1.
  17. D

    The Code Marathon.

    This was in todays comp1911 exam.
  18. D

    The Code Marathon.

    For those that don't know there's a function called isspace() that finds whether there is a space at a specific position. ( Which you can use for this question)
  19. D

    The Code Marathon.

    Waiting for the rep
Top