Search:

Type: Posts; User: wufflz

Search: Search took 0.00 seconds.

  1. Replies
    4
    Views
    7,530

    I dont think there is a problem with sharing...

    I dont think there is a problem with sharing resources for learning instead of pointing to google.

    Here is two websites i know of, both have no solutions though from what i know? The 2nd link i...
  2. Replies
    34
    Views
    18,974

    I checked, its possible to change to warning lvl...

    I checked, its possible to change to warning lvl of the compiler (it was on 3) next step is 4 and then enable all warnings.
    I tried both (with the missing %i) but it didnt show any warnings.
  3. Replies
    34
    Views
    18,974

    I think my compiler warnings are on, im using...

    I think my compiler warnings are on, im using Visual Studio 2019 (havent changed any of the settings).
    I also debugged but that didnt show anything either.

    The problem was this: (my code without...
  4. Replies
    34
    Views
    18,974

    oh my god, your right. It didnt even cross my...

    oh my god, your right. It didnt even cross my mind (nor my eyes) to look at that.

    Now it works properly, thanks for point that out to me.
  5. Replies
    34
    Views
    18,974

    I do the input with scanf in another void...

    I do the input with scanf in another void function:

    void einlesen(int* array, int länge){
    for (int i = 0; i < länge; i++)
    {
    printf("Gib hier einen Wert ein");
    ...
  6. Replies
    34
    Views
    18,974

    by the way, i used this as a template(?) for my...

    by the way, i used this as a template(?) for my code, (its from the german wiki)


    bubbleSort(ArrayA) for (n=A.size; n>1; --n){
    for (i=0; i<n-1; ++i){
    if (A > A+[/COLOR]1]){
    ...
  7. Replies
    34
    Views
    18,974

    I dont think its the code for the bubble sort...

    I dont think its the code for the bubble sort algorithm thats wrong. I changed mine to match yours to check if that was the problem, but the output is still : 1 2 3 4 5
    It doesnt sort my input but...
  8. Replies
    34
    Views
    18,974

    Bubblesorting Array elements

    Hello,

    i need some help understand what im doing wrong. Please point me in the right direction.

    i will just post the relevant code:

    main function with :

    int main()
    {
Results 1 to 8 of 8