Course Hive
Search

Welcome

Sign in or create your account

Continue with Google
or
Pointers are easy! ๐Ÿ‘ˆ
Play lesson

C tutorial for beginners โš™๏ธ - Pointers are easy! ๐Ÿ‘ˆ

4.0 (0)
13 learners

What you'll learn

This course includes

  • 6.5 hours of video
  • Certificate of completion
  • Access on mobile and TV

Summary

Keywords

Full Transcript

#coding #programming #cprogramming void birthday(int* age); int main() { // pointer = A variable that stores the memory address of another variable. // Benefit: They help avoid wasting memory by allowing you to pass // the address of a large data structure instead of copying the entire data. int age = 25; int *pAge = &age; birthday(pAge); printf("You are %d years old", age); return 0; } void birthday(int* age){ // pass by reference (*age)++; }

Course Hive

Continue this lesson in the app

Install CourseHive on Android or iOS to keep learning while you move.

Related Courses

FAQs

Course Hive
Download CourseHive
Keep learning anywhere