WAP to print the address of variables using pointer
Write a program to print the address of variables using pointer Output Address of a = 6422300Address of b = 6422296Address of a = 6422300Address of b = 6422296
Write a program to print the address of variables using pointer Output Address of a = 6422300Address of b = 6422296Address of a = 6422300Address of b = 6422296
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 …