UrbanPro
true

Learn Embedded C from the Best Tutors

  • Affordable fees
  • 1-1 or Group class
  • Flexible Timings
  • Verified Tutors

Search in

Learn Embedded C with Free Lessons & Tips

Ask a Question

Post a Lesson

All

All

Lessons

Discussion

Answered on 28/10/2021 Learn Embedded C

Kiran Kumar

. 16yrs experience as java selenium automation Architect

The -> operator in C or C++ gives the value held by variable_name to structure or union variable pointer_name.
Answers 1 Comments
Dislike Bookmark

Lesson Posted on 07/09/2020 Learn Embedded C

C language

Ranjeet Patil

I am a teacher. I am giving home tuition. I have done post graduation degree. I have done certificate...

#include #include void main() { clrscr(); printf("\n Urban Pro "); getch(); } Answer the output in c programming: Output: UrbanPro
Comments
Dislike Bookmark

Lesson Posted on 08/03/2020 Learn Embedded C +2 Embedded Systems Linux Programming

Compiling a C program on Linux machine GCC

Narasimha

Note: if GCC is not available in your Ubuntu Linux machine install by using below command $sudo apt-get install gcc-4.9 Here 4.9 is GCC version Similarly for installing vim $ sudo apt-get install vim Below are the steps we have to follow for compiling a c programming file on Linux(Ubuntu): 1)... read more

Note: if GCC is not available in your Ubuntu Linux machine install by using below command

$sudo apt-get install gcc-4.9

Here 4.9 is GCC version

Similarly for installing vim

$ sudo apt-get install vim

 

Below are the steps we have to follow for compiling a c programming file on Linux(Ubuntu):

1) create a .c file using the below command

$vim demo_prog.c

2) write some logic based on your requirement and save using by pressing escape key and type " :wq "

3) compile the demo_prog.c using GCC

$gcc demo_prog.c

4) if no syntax errors in your demo_prog.c file then GCC compiler creates a.out file.

5) run a.out file

$./a.out

 

read less
Comments
Dislike Bookmark

Learn Embedded C from the Best Tutors

  • Affordable fees
  • Flexible Timings
  • Choose between 1-1 and Group class
  • Verified Tutors

Lesson Posted on 13/07/2019 Learn Embedded C +3 Embedded Systems Software Testing C Language

What is Safety-Critical Software?

Vihanga EmbedSoft

Vihanga embedsoft is India's only training institute for safety-critical embedded software. We enable...

A software whose failure may cause death or injuries to the users called Safety-Critical Software.The software present as part of Aeroplanes, or present in Rail as railway signalling software or Automotive (current as part of cars/buses/trucks) or health care (x-rays, scanners etc.).How is it, safety-critical?... read more

A software whose failure may cause death or injuries to the users called Safety-Critical Software.
The software present as part of Aeroplanes, or present in Rail as railway signalling software or Automotive (current as part of cars/buses/trucks) or health care (x-rays, scanners etc.).
How is it, safety-critical?
 Let's take an example.
1. The software was written for engine control of an aeroplane. During its flight, if the software fails, then the possibility of flight crash may result in life loss or disabilities.
2. Software written for signalling of train network, failure of that may result in a train collision.
3. break systems software of a Car, whose failure may result in an accident
4. Incorrect results produced by x-rays and scanners leads to health hazards to people.
Usually, all the above software are embedded softwares. As the software is safety-critical, extra care needs to be for software design and development.
Out of the four above, Avionics software is more critical because the aeroplane will not always be on the ground to switch off the system that is creating a problem.  Hence, more care needs to be taken than others while designing software or Testing software.

read less
Comments
Dislike Bookmark

Lesson Posted on 20/05/2019 Learn Embedded C +2 Advanced C++ Computer Programming in C

Magic in C=> OFFSET OF MACRO in C

Jyotishkar Dey

An B.E.(Hons) from Jadavpur University, working as Senior Research and Development Engineer in a big...

Here I am going to discuss an exciting macro in C. It will give you offset of a member within a structure. NULL or 0 address is typecasted to TYPE first. It won't result in segmentation fault as we are not going to access the value at the NULL address. By typecasting NULL to TYPE, you can imagine that... read more

Here I am going to discuss an exciting macro in C. It will give you offset of a member within a structure.

NULL or 0 address is typecasted to TYPE first. It won't result in segmentation fault as we are not going to access the value at the NULL address. By typecasting NULL to TYPE, you can imagine that an object of type TYPE is residing at 0 address location. Now, after that, if you access the member's address, it will give you the offset. Since we are typecasting 0 address location to TYPE, we are forcing the compiler to think that an object of type TYPE exists there, then afterwards we are reading the address of that member. It will give you the offset because the member's address is calculated relative to 0. Since we are not accessing memory at that location and merely fetching the address, it won't result in segmentation fault due to invalid memory access.

typedef struct
{
int i;
float f;
char c;
} SFOO;

void main(void)
{
printf("Offset of 'f' is %u", offsetof(SFOO, f));
}

#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)

read less
Comments
Dislike Bookmark

Answered on 08/12/2018 Learn Embedded C +2 Embedded & VLSI Embedded Systems

Amit Kumar

Experienced & Certified Tutor with 12 years of Experience

Due to 1) lack of knowledge 2) few companies in India 3) Slow promotion 4) Low income as compared to other fields
Answers 1 Comments
Dislike Bookmark

Learn Embedded C from the Best Tutors

  • Affordable fees
  • Flexible Timings
  • Choose between 1-1 and Group class
  • Verified Tutors

Answered on 08/12/2018 Learn Embedded C +2 Embedded & VLSI Embedded Systems

Amit Kumar

Experienced & Certified Tutor with 12 years of Experience

Prescaler is an electronic circuit that used to reduce high frequency electrical signal to low frequency And postscaler circuit slow down the rate of interrupt generation from timer.
Answers 1 Comments
Dislike Bookmark

Answered on 08/12/2018 Learn Embedded C +2 Embedded & VLSI Embedded Systems

Amit Kumar

Experienced & Certified Tutor with 12 years of Experience

Both are good at their place. You can choose according to your interest.
Answers 1 Comments
Dislike Bookmark

Answered on 08/12/2018 Learn Embedded C +2 Embedded & VLSI Embedded Systems

Amit Kumar

Experienced & Certified Tutor with 12 years of Experience

Xilinx ISE It include simulator in which simulate your design easily.
Answers 1 Comments
Dislike Bookmark

Learn Embedded C from the Best Tutors

  • Affordable fees
  • Flexible Timings
  • Choose between 1-1 and Group class
  • Verified Tutors

Answered on 08/12/2018 Learn Embedded C +2 Embedded & VLSI Embedded Systems

Amit Kumar

Experienced & Certified Tutor with 12 years of Experience

You have to do at least six months course in Embedded System according to the demand. You have many options like you can do training in following microcntroller of Embedded System . 1) 8051 2) ARM 3) PIC 4) AVR 5) Arduino 6) Raspberry Pi Or you can also choose Embedded System with Robotics read more

 You have to do at least six months course in Embedded System according to the demand.

You have many options like you can do training in following microcntroller of Embedded System .

1) 8051

2) ARM

3) PIC

4) AVR

5) Arduino

6) Raspberry Pi

Or you can also choose Embedded System with Robotics

read less
Answers 1 Comments
Dislike Bookmark

About UrbanPro

UrbanPro.com helps you to connect with the best Embedded C Training in India. Post Your Requirement today and get connected.

Overview

Questions 156

Total Shares  

+ Follow 3,804 Followers

Top Contributors

Connect with Expert Tutors & Institutes for Embedded C

x

Ask a Question

Please enter your Question

Please select a Tag

X

Looking for Embedded C Classes?

The best tutors for Embedded C Classes are on UrbanPro

  • Select the best Tutor
  • Book & Attend a Free Demo
  • Pay and start Learning

Learn Embedded C with the Best Tutors

The best Tutors for Embedded C Classes are on UrbanPro

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more