Theory - Pointers are powerful features of C C++ || Learning C Programming ||For Beginners||#C225

Subscribers:
10,700
Published on ● Video Link: https://www.youtube.com/watch?v=uVHXXI9NSSI



Duration: 10:27
138 views
15


C Pointers
In this article, you'll learn about pointers; what are they, how do you use them and the common mistakes you might face when working with them.
Pointers are powerful features of C and (C++) programming that differentiates it from other popular programming languages like Java and Python.

Pointers are used in C program to access the memory and manipulate the address.

Address in C
Before you get into the concept of pointers, let's first get familiar with address in C.

If you have a variable var in your program, &var will give you its address in the memory, where & is commonly called the reference operator.

You must have seen this notation while using scanf() function. It was used in the function to store the user inputted value in the address of var.
Reference operator (&) and Dereference operator (*)
As discussed, & is called reference operator. It gives you the address of a variable.

Likewise, there is another operator that gets you the value from the address, it is called a dereference operator *.

Below example clearly demonstrates the use of pointers, reference operator and dereference operator.
Note: The * sign when declaring a pointer is not a dereference operator. It is just a similar notation that creates a pointer.

|| Like-Comment-Subscribe-Share ||
||Support and Subscribe ||
#rubalsolutions #coding #developer #programming #programmer #technology #clanguage #computerscience #c #informaticpractices #sub #subscribe #youtube #newyoutuber #youtubechannel

To Install Turbo C++ 4.5 Click on Below Link and Download rar file and extract and then install..
address updated by app.box.com on 8 april
https://app.box.com/s/soz2137zo0rv0sb08pf4upzgj01umfjr

Do Like,Comment,Share and Subscribe if u are learning little bit.
Please give me suggestions in form of comment box .

Link To My Blog - https://www.blogger.com/blogger.g?blo...
Like me on Facebook @ https://www.facebook.com/rubalsolutions/
Follow me on Twitter @ https://twitter.com/ruby0071
Follow me on Instagram @https://www.instagram.com/er.rubal/
Email me at :- ruby0071@gmail.com

Recording Microphone Mic & Tripod Stand for Laptop
https://amzn.to/2WCV5a8
Mini Professional Handheld Microphone Compatible with Xiaomi, Lenovo, Apple, Samsung, Sony, Oppo, Gionee, Vivo Smartphones (One Year Warranty)
https://amzn.to/2HRp1fj




Other Videos By Rubal Solutions


2019-04-26Program 108 #P108 -Find Largest Element Using Dynamic Memory Allocation - calloc() #C233
2019-04-26Program 107 #P107 -C Program for MALLOC and REALLOC FUNCTION Dynamic Memory Allocation #C232
2019-04-25Program 106 #P106 -C Program for CALLOC and FREE FUNCTION to calculates the sum of n numbers #C231
2019-04-24Program 105 #P105 -C Program for MALLOC and FREE FUNCTION to calculates the sum of n numbers #C230
2019-04-24Program 104 #P104 -C Program to Swap Elements Using Call by Reference #C229
2019-04-23Program 103 #P103 -C Program Example Pointers and Arrays .. Simple Pointer Array Example #C228
2019-04-22Program 102 #P102 -C Program Example How Pointer Works #C228
2019-04-22Some Useful Tips For Women Travelling In Train - Hope This Will Helps. Security Tips On Travelling.
2019-04-22Program 101 #P101-C Program to Access Array Elements Using Pointers #C227
2019-04-21Theory - Call By Reference ||Dynamic Allocation||C Lecture Pointer’s || Learning C Programming #C226
2019-04-19Theory - Pointers are powerful features of C C++ || Learning C Programming ||For Beginners||#C225
2019-04-18Class 6th : Chapter 4- Tables and Charts in Impress || CBSE || computer science || Course Book ||
2019-04-18Class 6th : Chapter 3- Learn Mail Merge || CBSE || computer science || Course Book ||
2019-04-17महावीर स्वामी का जीवन परिचय, 2019 जयंती | Mahavir Swami 2019 Jayanti and history in hindi
2019-04-16Theory Lecture - C – Pointers Arithmetic PART 2 || Learning C Programming || For Beginners || #C224
2019-04-15Theory Lecture - C – Pointers BASIC PART 1 || Learning C Programming || For Beginners || #C223
2019-04-14Program 100 #P100-C Program for Selection sorting-Implementing selection sort algorithm #C222
2019-04-14Program 99 #P99 - C Program for Insertion sort-Implementing insertion sort algorithm Ascending #C221
2019-04-14Program 98 #P98 - C Program for bubble sorting-Implementing bubble sort algorithm (Ascending) #C220
2019-04-13Program 97 #P97 - C Program to arrange numbers in ascending order (ARRAY SORTING PROGRAM) #C219
2019-04-13माँ सिद्धिदात्री की कहानी || नवरात्र के नौवें दिन माँ सिद्धिदात्री की पूजा की जाती है||शुभकामनाएं ||



Tags:
computer education
computer education in Hindi
basic computer training
rubalsolutions
beginner YouTube
coding'
developer
subscribe
sub
computer-science
cprogramming
youtuberocks
subscribeandsupport
pointers
pointers in c
stores the address
null pointer
pointer to an integer
pointer to a double
pointer to a float
pointer to a character
pointer arithmetic
array of pointers
pointer to pointer
pointers to functions
return pointer
Pointers are powerful features