Varanasi-Software-Junction / datastructures

A repository on Data Structures
MIT License
8 stars 5 forks source link

Pointer #14

Open vishalkumar51095 opened 2 years ago

vishalkumar51095 commented 2 years ago
  1. C program to demonstrate declaration of pointer variables.
  2. C program prints address of a variable and a variable can be assigned different address in different runs.
  3. C program to illustrate Array Name as Pointers in C.
  4. C program to Reverse an array using pointer.
  5. C program sort an array using pointer.
  6. C program for differentiate passing by pointer and passing by reference.
  7. C program to illustrate concept of the pointers to constant.
  8. C program to illustrate concept of the constant pointers to pointers
  9. C program to illustrate concept of the constant pointers
  10. C program to check if a string is palindrome using pointers.
  11. C program to find length of string using pointer arithmetic.
  12. C Program to compare two strings using Pointers.