“Variabler Swap in C.” Code-Antworten

Variabler Swap in C.

// swap variables in C
void swap(int *x, int *y){
	int temp = *x;
    *x = *y;
    *y = temp;
}
swap(&a, &b); // address of a and b
V _VITHURSHAN

Variabler Swap in C.

// swap variables in C
void swap(int *x, int *y){
	int temp = *x;
    *x = *y;
    *y = temp;
}
swap(&a, &b); // address of a and b
V _VITHURSHAN

Ähnliche Antworten wie “Variabler Swap in C.”

Fragen ähnlich wie “Variabler Swap in C.”

Weitere verwandte Antworten zu “Variabler Swap in C.” auf C

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen