Skip to content
Home » Size of Pointers | C Language Tutorial naresh i technology c language

Size of Pointers | C Language Tutorial naresh i technology c language



C Language Tutorial Videos | Mr. Srinivas
** For Online Training Registration: ? Call: +91-8179191999

? Visit Our Website for Classroom Training:

? For Online Training:

————————–

? About NareshIT:

“Naresh IT is having 14+ years of experience in software training industry and the best Software Training Institute for online training, classroom training, weekend training, corporate training of Hadoop, Salesforce, AWS, DevOps, Spark, Data Science, Python, Tableau, RPA ,Java, C#.NET, ASP.NET, Oracle, Testing Tools, Silver light, Linq, SQL Server, Selenium, Android, iPhone, C Language, C++, PHP and Digital Marketing in USA,Hyderabad, Chennai and Vijayawada,Bangalore India which provides online training across all the locations

See also  Student parent technology device help desk technology device

————————–

? Our Online Training Features:
1.Training with Real-Time Experts
2.Industry Specific Scenario’s
3.Flexible Timings
4.Soft Copy of Material
5. Share Videos of each and every session.

See also  I STARTED MY OWN GAS STATION technology addon mcpe

————————–

Please write back to us at [email protected]/[email protected] or Call us at USA:

+1404-232-9879 or India: +918179191999

** Check The Below Links**
? For Course Reg:
? Subscribe to Our Channel:
? Circle us on G+:
? Like us on Facebook:
? Follow us on Twitter:
? Follow us on Linkedin:

? Follow us on Instagram: .

Images related to the topic naresh i technology c language

Size of Pointers | C Language Tutorial

Size of Pointers | C Language Tutorial

Search related to the topic Size of Pointers | C Language Tutorial

#Size #Pointers #Language #Tutorial
Size of Pointers | C Language Tutorial
naresh i technology c language
See all the latest ways to make money online: See more here
See all the latest ways to make money online: See more here

See also  To Khie Joit Naba Iohthiah | Ephesos 5:14 | Khasi short Video technology da khasi

32 thoughts on “Size of Pointers | C Language Tutorial naresh i technology c language”

  1. Well done, but it could have been better explained;
    When you declare
    int a=2;
    Considering 4 byte int (32 bits) and address of a (&a) equal to 1000 (random), it means that the first 8 bits of a are stored in byte #1000, then the next 8 bits in byte #1001, the next 8 bits in byte #1002 and the last 8 bits in byte #1003

  2. great sir!! In C LANGUAGE i found only 2 channels are best ,one is Naresh i tecnologies and other is Neso Academy.These two r teaching in best level…,once again thank u soo much sir..

  3. Here is the complete code for: Size of pointers:
    #include<stdio.h>
    struct emp
    {
    int* eno;
    char* ename;
    float* esal;
    };
    void main()
    {
    char* cp;
    int* ip;
    struct emp* sep;
    printf("size of char* is: %d",sizeof(cp));
    printf("size of int* is: %d",sizeof(ip));
    printf("size of emp* is: %d",sizeof(sep));
    }

Leave a Reply

Your email address will not be published. Required fields are marked *