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

Top 11 structure padding questions in C

If you are looking for structure padding questions or tricky structure padding questions, then you are at the right place. In my previous post, I created a collection of “C interview questions” that are liked by many people. So here I have tried to create some collection of structure padding questions in C that might […]

Top 11 structure padding questions in C Read More »

Parse XML response in C without using library

Parse XML response in C without using library

An XML is the easiest way to carry the data in server communication. It carries data in plain text format which is readable by both humans and machines. There are many libraries available to parse XML responses in C/C++ for example Expat and libxml. But sometimes we need to create our own function to parse XML responses in

Parse XML response in C without using library Read More »

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 »

← Previous 1 … 69 70 71 … 81 Next →
Best Gift for Programmers,Coders, and Techies

Copyright © 2026 Aticleworld | Powered by Aticleworld