Author name: Amlendra

I am an embedded c software engineer and a corporate trainer, currently, I am working as senior software engineer in a largest Software consulting company . I have working experience of different microcontrollers (stm32, LPC, PIC AVR and 8051), drivers (USB and virtual com-port), POS device (VeriFone) and payment gateway (global and first data).

Best C Books

10 Best C Programming Books For Beginners (2021 Update)

C is a general-purpose, imperative computer programming language. It was originally developed by Dennis Ritchie between 1969 and 1973 at Bell Labs. The C language is used to re-implement the Unix operating system. It also has been standardized by the American National Standards Institute (ANSI) since 1989 and subsequently by the International Organization for Standardization

10 Best C Programming Books For Beginners (2021 Update) Read More »

Autodesk Autocad Certification

AutoCAD certification exam preparation with AutoCAD Certification Practice Test

If you are preparing for the AutoCAD certification exam or looking to appear in AutoCAD certification online, then this blog post for you. In this blog post, I will explain each small point related to the AutoCAD certification and its preparation. Also, I will give you information about a very popular course related to AutoCAD

AutoCAD certification exam preparation with AutoCAD Certification Practice Test Read More »

div ldiv lldiv function in C

div, ldiv, lldiv, functions in C

The div, ldiv, and lldiv, functions compute quotient (numer / denom ) and remainder (numer % denom ) in a single operation. These functions div, ldiv, and lldiv, are defined in stdlib.h header file and returns a structure that comprises the quotient and the remainder. So let see these function one by one with some

div, ldiv, lldiv, functions in C Read More »

abs labs llabs in c

abs labs llabs functions in C/C++

The abs, labs, llabs functions compute the absolute value of an integer. These functions abs, labs, llabs are defined in stdlib.h header file. The behavior of these functions is undefined if the result cannot be represented by the return type. So let see these function one by one with some example code. abs(): The abs

abs labs llabs functions in C/C++ Read More »

How to use and implement strpbrk in C

The strpbrk function scan the string s1 and finds the first character in the string s1 that matches any character specified in string s2. The search does not include the terminating null-characters of either string but ends there. Syntax strpbrk in C: //General Syntax of strpbrk char *strpbrk(const char *s1, const char *s2); Parameters: s1— The

How to use and implement strpbrk in C Read More »