Basics of pointer in embedded c
The pointer in c language is a variable which can be store the address of another variable. int n=10; int *p=&n; Declaration a pointer in embedded might you also like…
The pointer in c language is a variable which can be store the address of another variable. int n=10; int *p=&n; Declaration a pointer in embedded might you also like…
There are two methods to he data into the function in embedded c Call by value Call by reference call by reference in embedded c Call by reference in embedded…
We know that storage classes in embedded c are used to determine the visibility, lifetime , memory location and initial value of a variable. There are four type of storage…
Intro: We know that SPI stands for the Serial Peripheral Interface. SPI developed by Motorola in the mid-1980.It is a one of the serial communication protocol for connect low-speed devices.It…
In this article we will see How to solve Curl 7 Error so let's see: “CURL ERROR 7” error is caused due towhen your curl request is blocked or stop…
As like C python also allow to device a large program into the basic block is known as function. In function curly bracket contain the set of programming statements {}…
The python while loop allows a part of the code to be executed until the given condition return false. I python we use following loop control statements: Continue StatementsBreak StatementsPass…
The looping simplifies complex programming logics to simple ones. Instead of writing the same code again and again with the help of for loop we can repeat the same code…
We know that decision making is the most important concept of all the programming languages. Condition making is the one of the important aspect of decision making. Three kind of…
In this article we will see how to write simple python code to wishing to someone for this merry christmas in 2021. So Let's see: we use three Random wishing…