Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

try with this new informations please it was not correct Exercise 2 Modularisierung: Abgabe: main.c, bubblesort.c. bubblesort.h Unten sehen Sie ein Programm refactor.c, das eine

try with this new informations please it was not correct image text in transcribed
image text in transcribed
Exercise 2 Modularisierung: Abgabe: main.c, bubblesort.c. bubblesort.h Unten sehen Sie ein Programm refactor.c, das eine eingegebene Folge von Integern aufsteigend sortiert ausgibt. Das Programm soll auf zwei Module main.c und bubblesort.c aufgeteilt werden. Dabei soll main.c die main- und print-Funktion enthalten, das Modul bubblesort.c die Sortierfunktionen bubblesort und swap. Entsprechend gibt es die Header-Datei bubblesort.h. Achten Sie darauf die Hilfsfunktion swap nur innerhalb von bubblesort.c sichtbar zu halten. Vergessen Sie nicht, die Header Dateien korrekt in die c-Dateien einzubinden! Programm refactor.c / Gibt eine eingegebene Folge von Zahlen sortiert aus #include #define MAX 6e void swap(int *xp, int *yp int temp = *XP: *xp = *YP; *yp = temp: void bubblesort(int arrll, int n) int i, j; for (i = 0; i arrij + 11) swap(&arrlj), &arrlj + 1]) void printarray(int arril, int n int 1, for (i = 0; i MAX) printf("Zu viele Elemente! "): return 0; for (i = 0; i <><>

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Databases And Information Systems 1 International Baltic Conference Dbandis 2020 Tallinn Estonia June 19 2020 Proceedings

Authors: Tarmo Robal ,Hele-Mai Haav ,Jaan Penjam ,Raimundas Matulevicius

1st Edition

303057671X, 978-3030576714

More Books

Students also viewed these Databases questions

Question

1. Select the job or jobs to be analyzed.

Answered: 1 week ago