swap

  • C

C Program To Re-arrange Even and Odd Elements of An Array

Lets write a C program to re-arrange even and odd elements of an array. Note: We need to arrange EVEN…

4 years ago
  • C

Swap 2 Numbers Using Macros: C Program

Today lets learn how to swap two integer numbers(using a temporary variable) using Macros in C. Video Tutorial: Swap 2…

4 years ago
  • C

C Program To Shift Variable Values Circularly To Right

Given three variables x, y, z write a function to circularly shift their values to right. In other words if…

4 years ago
  • C

C Program To Swap Two Numbers using Function

Lets write a C program to swap 2 numbers using function/method. When we call a function and pass the actual…

4 years ago
  • C

C Program To Swap Two Numbers using Pointers

Lets write a C program to swap 2 numbers using pointers and function. When we call the function, we pass…

4 years ago