Search
 
SCRIPT & CODE EXAMPLE
 

C

bubble sort in c

//bubble sort in C
//a is an array and q is its length
for(int i = 0; i<q; i++){
            for(int j = 0; j<q-1; j++){
                if(a[j]>a[j+1]){
                    a[j] ^= a[j+1];
                    a[j+1] ^= a[j];
                    a[j] ^= a[j+1];
                }
            }
        }
Comment

bubble sort c

int count; int aux; int array[count];
for (int i = 0; i < count; i++)
{
	for (int j = 0; j < count - 1; j++)
	{
		if (array[j] > array[j + 1])
		{
			aux = array[j];
			array[j] = array[j+1];
			array[j+1] = aux;
		}
	}
}
Comment

PREVIOUS NEXT
Code Example
C :: dynamic memory allocation c 
C :: c exit 
C :: how to get the lowest number on a array in c 
C :: lichess puzzles 
C :: convert string to int c 
C :: qtableview get selected row 
C :: Installing Tailwind 
C :: variable swap in c 
C :: C strlen implementation 
C :: fseek function in c 
C :: absolute value of intel intrinsic 
C :: increment and decrement operator 
C :: looping through an array in c 
C :: c list 
C :: c read binary file 
C :: c comment 
C :: size of operator in c language 
C :: C Syntax of realloc() 
C :: north austin weather 
C :: C Syntax of return statement 
C :: allocating memory for 1Mb text file in C 
C :: how to find adam number uasing loop in C 
C :: c %d 
C :: typecating in c 
C :: code to reverse the words in a sentnce 
C :: c pointers to struct 
C :: converting time in c 
C :: getopt optstr 
C :: c bind str and int 
C :: write varriable in file C 
ADD CONTENT
Topic
Content
Source link
Name
7+8 =