Skip to content
  • Home
  • C Tutorial
  • C Programming Examples
  • Interview Questions
    • C Interview Questions
    • Embedded C Interviews
    • Interview Questions On bitwise Operators C
    • Interview Questions On Memory Allocation C
    • Interview Questions on string C
    • Multiple Choice Questions In C
    • C++ Interview Questions
    • I2C Interview Questions
    • Programming Language MCQ
    • Python Interview Questions
    • Can protocol interview questions
    • C# Interview Questions
  • Video Courses
    • Embedded System
      • Mastering Microcontroller
      • Mastering RTOS
      • Embedded Linux
      • Arduino Step by Step
      • Ultimate Guide to Raspberry Pi
      • Electronics and PCB Design
      • VHDL and FPGA Development
      • Learn electricity & electronics
      • PLC Programming From Scratch
    • Data Science Course
      • Data Science Course 2020
      • Machine Learning A-Z
      • Machine Learning, Data Science and Deep Learning
      • Python for machine Learning
      • Statistics for Data Science, Data and Business Analysis
    • Programming Languages
      • C
      • C++
      • HTML and CSS
      • Javascript
      • Java
      • Python
      • Sql
    • Web Development
      • Angular
      • Complete JavaScript Course 2020
      • Modern React with Redux
      • Complete Cyber Security
      • Web Development Bootcamp
      • Web Developer zero to Mastery
    • Game Development
      • Complete C# Unity Developer 2D
      • Complete C# Unity Developer 3D
      • Unreal Engine C++
      • RPG Core Combat Creator
  • Tools
  • Blog
  • MCQ’s
  • Blog Post
  • MCQs
  • RECOMMENDED RESOURCES AND TOOLS FOR BEGINNERS
Inter-task Access Synchronization

Inter-task Access Synchronization, You should know

In this blog post, you will learn the importance of Inter-task Access Synchronization. We will discuss the race condition with its solution including the mutual exclusion and semaphore. So let’s start the Inter-task access synchronization blog post with some problems and their solutions. The Target: Shared Resource Shared Resource is a globally shared resource that […]

Inter-task Access Synchronization, You should know Read More »

Delete node in linked list without head pointer

Delete a node in linked list without head pointer

Generally, people ask the question to delete a node in linked list without head pointer. It is a tricky question because the general approach to delete the given node is that traverse the linked list till the node which you want to delete. In this article, I will describe that how we can delete a

Delete a node in linked list without head pointer Read More »

pointers as member

Pointers as Member of Structure in C

A pointer could be a member of structure, but you should be careful before creating the pointer as a member of structure in C. Generally we take a pointer as a member when we don’t know the length of the data which need to store. Let’s see an example to the better understanding, typedef struct

Pointers as Member of Structure in C Read More »

pointer to string array in c

Pointer to string array in C, you should know

In my previous article, I had described the array in brief but I have received some emails from the subscriber and they want me to write an article on pointer to string array in C. If you want to read about the array, you can see my other post’s array in C/C++. But before reading

Pointer to string array in C, you should know Read More »

return multiple value from the structure in c

How to return multiple values from a function in C programming?

Sometimes we require to return multiple values from a function in C. I found that many new programmers ask this question is because the C language does not allow to return multiple values from the function directly. But no problem we have the way to take multiple values from the function and it is not

How to return multiple values from a function in C programming? Read More »

Fibonacci Series Program In C

Fibonacci Series Program In C: A simple introduction

In the Fibonacci series, each number is the sum of the two previous numbers. The first two numbers in the Fibonacci series are 0 and 1. The sequence Fn of Fibonacci numbers is defined by the recurrence relation: Fn = Fn-1 + Fn-2 with seed values F0 = 0 and F1 = 1. So if

Fibonacci Series Program In C: A simple introduction Read More »

Writing Secure Code in C

Writing Secure Code in C, You should know

Writing secure code is very important. If you are c developer, then you should aware because in C there is no direct method to handle the exception (no inbuilt try and catch like another high-level language like C#). It is a responsibility of the developer to handle the all the exception manually. In this article,

Writing Secure Code in C, You should know Read More »

Batch file introduction, you should know

A batch file is a text file that contains a sequence of commands for a computer operating system. The batch script file has a bundle or package of a set of commands that is the reason it is called the batch file. The extension of the bat script file is .bat or .cmd. Sometimes in

Batch file introduction, you should know Read More »

if else if

if else in c, some important programming exercises

In this blog post, you will see some programming examples related to the if-else statement (including if, if…else, and nested if..else).   C if…else Statement: if and if-else in C is a selection statement that is used to select statements depending on the value of a controlling expression. Syntax: if ( controlling expression ) statement;

if else in c, some important programming exercises Read More »

check expiry date in C

Check expiry date using c language, you should know

It is good habits to check the expiry date of any products like cosmetic products, milk products, etc. Such products can no longer meet safety requirements as soon as the expiry date has been passed. Sometimes in C application, we need to implement the logic to validate the expiry date of the product. So In

Check expiry date using c language, you should know Read More »

← Previous 1 … 64 65 66 … 76 Next →
Best Gift for Programmers,Coders, and Techies

Copyright © 2025 Aticleworld | Powered by Aticleworld