WAP to swap values of 3 variables using pointer
Write a program to swap (rotate) values of 3 variables using pointer Output Enter three numbers: 123a = 2b = 3c = 1
Write a program to swap (rotate) values of 3 variables using pointer Output Enter three numbers: 123a = 2b = 3c = 1
Write a program to print the address of a variables Output Address of a = 6422300Address of b = 6422296Address of a = 6422272Address of b = 6422276
Write a program to count odd and even numbers in a given digit using pointer Output Enter a number: 1234890Even digit: 4Odd digit: 3 Behind …
Write a program to sort the array elements in ascending order Output Enter the size of an array.5Enter the element:23648In ascending order:23468