You are on page 1of 9

Homework Assignment for ESC205

2. Write a program in C to find the square of any number using the function.

The Code:

The Output:
3. Write a program in C to check a given number is even or odd using the
function.

The Code:

The Output:

4. Write a program in C to demonstrate the use of &(address of) and *(value at


address) operator.

The Code:
The Output:
5. Write a program in C to find the maximum number between two numbers
using a pointer

The code:

The Code:

6. Write a program in C to print the elements of an array in reverse order.


The code:

The Output:
7. Write a program in C to sort an array using Pointer.

The Code:

The Output:

8. Write a program in C to count the number of vowels and consonants in a


string using a pointer.
The Code:

The Output:

9. Write a program in C to find the largest element using calloc().

The Code:
The Output:

10. WAP to convert Binary to Octal using function


The Code:

The Output:

You might also like