> ## Documentation Index
> Fetch the complete documentation index at: https://learn.acadlink.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Pointers — Questions

> Choose a question to practice.

<CardGroup cols={2}>
  <Card title="Q1 — Basic Pointer" icon="terminal" href="/practice/c/pointers/basic-pointer">
    Print a variable's value and address using a pointer.
  </Card>

  <Card title="Q2 — Swap Using Pointers" icon="terminal" href="/practice/c/pointers/swap-using-pointers">
    Swap two variables using pointers passed to a function.
  </Card>

  <Card title="Q3 — Sum of Array Using Pointer" icon="terminal" href="/practice/c/pointers/sum-of-array-pointer">
    Traverse an array using pointer arithmetic and find the sum.
  </Card>
</CardGroup>
