Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Master C Programming (Only Pointers)
Rating: 4.5 out of 5(18 ratings)
641 students
Created bySamet Akçalar
Last updated 4/2025
English

What you'll learn

  • Pointers and addresses
  • indirection and multiple indirection
  • Pointer to Pointer
  • Array of Pointers
  • Generic Pointers
  • Funcation Pointers
  • Pointer arithmetic

Course content

7 sections45 lectures9h 48m total length
  • Giriş4:37

Requirements

  • You should understand at least the basics of C programming

Description

This course  the depthest pointers course.Designed for those who want to learn pointers in detail.



This Course deals only with the topic of pointers, with lots of examples in detail.


Pointers


Call by Referance & Value


Pointer Arithmetic


Array of String


Array of pointers


Funcation pointers


Void pointers


Pointer Examples


The topics were processed separately. After the subject related to each topic, the question was solved immediately. The subjects such as basic C topics (loops, operators, if else structures and arrays) were accepted to be known.
Pointers part of C programming are commonly troublesome for new learners. In this tutorial, pointers will be explained in depth from basics to advance level. For those who complete the course will have know the pointers entirely, which will allow them to use pointers in theie projects at school or worklife Also will be able to answer any question about pointers at easily.

The topics were processed separately. After the subject related to each topic, the question was solved immediately. The subjects such as basic C topics (loops, operators, if else structures and arrays) were accepted to be known.


In computer science, a pointer is an object in many programming languages that stores a memory address. This can be that of another value located in computer memory, or in some cases, that of memory-mapped computer hardware. A pointer references a location in memory, and obtaining the value stored at that location is known as dereferencing the pointer. As an analogy, a page number in a book's index could be considered a pointer to the corresponding page; dereferencing such a pointer would be done by flipping to the page with the given page number and reading the text found on that page. The actual format and content of a pointer variable is dependent on the underlying computer architecture.

Who this course is for:

  • Engineering Students
  • Engineers
  • C programmer who needs to understand pointers in depth
  • Anybody who wants to be advanced C Programming Language