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
find all prime number in c

Find prime numbers up to n using trial division and Sieve of Eratosthenes algorithm

Previously we have read how to find prime number using C code, here we will learn how to find the all prime number up to n. A prime number is a positive natural number, whose value greater than 1 and it has only two factors 1 and the number itself. Either you can say that […]

Find prime numbers up to n using trial division and Sieve of Eratosthenes algorithm Read More »

Different uses of function pointers and structure together

Different uses of function pointers and structure together

Do you know you can use a function pointer in the structure? I assume your answer is “YES” but however if your answer is “NO”, then it is my recommendation that you should read the article “How to use the structure of function pointer in C?” In this blog post, I will explain the different

Different uses of function pointers and structure together Read More »

prime number in c

How to find whether a given number is prime number?

A prime number is a positive natural number, whose value greater than 1 and it has only two factors 1 and the number itself. Either you can say that prime numbers only divided by itself and 1. Any positive natural number who is not a prime number is called a composite number. For example, 2,3,5,7,11.. In

How to find whether a given number is prime number? Read More »

volatile qualifier in c

volatile keyword in C ( or volatile qualifier in C)

The volatile keyword is a qualifier it has a lot of importance in the programming language but problem is that many programmers are not aware of how to use the volatile keyword and when need to qualify a variable from the volatile keyword. Most of the textbooks don’t give importance to this topic either and

volatile keyword in C ( or volatile qualifier in C) Read More »

factorial of a number in c

5 ways to find factorial of number in c programming

Factorial is used in many areas of mathematics but mainly used in permutation and combination. Factorial is the product of the all positive number from 1 to n (user entered number). In simple words, we can say that factorial of n would be 1*2*3*…..*n. Note: There is no factorial exist for the negative number and

5 ways to find factorial of number in c programming Read More »

advantages of virtual memory

Advantage of virtual memory in operating system

In this article, I am describing some issues which make your PC slow and also describing the advantages of virtual memory. But before explaining the advantage of virtual memory first let understand what is virtual memory and why it is required. It is very important to understand the concept of memory management although Memory management

Advantage of virtual memory in operating system Read More »

enum in c

enum in c, seven important points you should know

An enum in C is a user-defined data type and it consists set of named constant integer. Using the enum keyword, we can declare an enumeration type with using the enumeration tag (optional) and a list of named integer. Basically, we used the enum to increase the code readability and with enum easy to debug

enum in c, seven important points you should know Read More »

little endian vs big endian

Little endian and Big endian Concept with programming Examples.

Generally, people who work on high-level language do not take an interest in the details of the computer and their architecture. They ignore the concept of endianness and also never think about how to convert little endian to big endian and what is the difference between little endian big endian (little endian vs big endian).

Little endian and Big endian Concept with programming Examples. Read More »

structure padding in C

Understanding of structure padding in C with alignment

Many times I have read about the most confusing topic structure padding in C and memory alignment in C. Understanding of memory alignment is very important for a software engineer who works on the memory. Sometimes if we don’t care about memory alignment then it may cause a serious issue. I have read a lot

Understanding of structure padding in C with alignment Read More »

Interfacing of switch and led using the 8051

Input and output devices are the important components of embedded system, we cannot imagine any embedded device without the input and output device, switch and led are the basic example of input and output device, so it is very important to understand the interfacing of the switch and led. Here we learn how to control

Interfacing of switch and led using the 8051 Read More »

← Previous 1 … 72 73 74 … 76 Next →
Best Gift for Programmers,Coders, and Techies

Copyright © 2025 Aticleworld | Powered by Aticleworld