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
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 »

check date validity

C program to check valid date (date is valid or not)

There are a lot of people who don’t know how to check the valid date and make mistakes at the time of the creation of the date. In this article, I will describe the way to how to create and check the validity of the date. Whenever you require to create a date manually then

C program to check valid date (date is valid or not) Read More »

Token Pasting Operator in c

Token Pasting Operator in c, you should know

Token Pasting Operator (##) is sometimes called a merging or combining operator. It is used to merge two valid tokens, it is the reason we called it token concatenation. In C language, the ## preprocessing operator performs token pasting. At the time of macro expanding two valid taken combined to each other and create a

Token Pasting Operator in c, 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