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

C program to print natural numbers from 1 to n

What are Natural numbers? Natural numbers are the positive integers or non-negative integers which starts from 1 and ends at infinity, such as: 1,2,3,4,5,6,7,8,9,10,……,∞   In this blog post, we learn how to write a C program to print natural numbers from 1 to n.  We will take the help of iterative statements like for, […]

C program to print natural numbers from 1 to n Read More »

C Program to find nth Armstrong numbers

What are Armstrong numbers? A positive integer number of n digits is called an Armstrong number of order n (order is a number of digits) if the sum of the power of n of each digit is equal to the number itself. For example, abcd… = pow(a,n) + pow(b,n) + pow(c,n) + pow(d,n) + ….   Common

C Program to find nth Armstrong numbers Read More »

How to Implement Armstrong Number in C?

What are Armstrong numbers? An Armstrong number is a 3-digit number such that the sum of the cube of each of its digits is equal to the number itself. For example, 371 is an Armstrong number since 3**3 + 7**3 + 1**3 = 371.   In general, a positive integer number of n digits is

How to Implement Armstrong Number in C? Read More »

C Program to print Fibonacci Sequence using recursion

What is the Fibonacci sequence? 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 ( where, n > 1) with seed

C Program to print Fibonacci Sequence using recursion Read More »

C Program to generate Fibonacci sequence

What is the Fibonacci sequence? 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  ( where, n > 1) with seed

C Program to generate Fibonacci sequence Read More »

C Program to find prime factors of a number

How to write a C Program to Find Prime Factors of a Number using For Loop, While Loop, and Functions. In our previous article, we have already explained, How to write a program to Find Factors of a Number and Find Prime numbers. C Program to Find Prime Factors of a Number Using While Loop

C Program to find prime factors of a number Read More »

C Program to Print Odd Numbers from 1 to N

In this blog post, we will see, how to write a C Program to Print Odd Numbers from 1 to N using a while and for a loop. We will also see how we can print odd numbers from 1 to N without using a branching statement ( if-else statement). C Program to Print Odd

C Program to Print Odd Numbers from 1 to N Read More »

C Program to Print Even Numbers from 1 to N

In this blog post, we will see, how to write a C Program to Print Even Numbers from 1 to N using a while and for a loop. We will also see how we can print even numbers from 1 to N without using a branching statement ( if-else statement).   C Program to Print

C Program to Print Even Numbers from 1 to N Read More »

C program to find even and odd numbers

In this article, you will learn to write a C program to find even and odd numbers. After reading the article you are able to check whether a number entered by the user is even or odd.   What are Even numbers? A number that is evenly divisible by 2 is called an even number.

C program to find even and odd numbers Read More »

C program to print 1 to 100 without using Loop

  #include <stdio.h> int main() { int data = 0; begin: data = data + 1; printf(“%d “, data); if (data < 100) { goto begin; } return 0; }   #include <stdio.h> int main() { static int data = 1; if (data <= 100) { printf(“%d “, data++); main(); } return 0; }  

C program to print 1 to 100 without using Loop Read More »

← Previous 1 … 54 55 56 … 81 Next →
Best Gift for Programmers,Coders, and Techies

Copyright © 2026 Aticleworld | Powered by Aticleworld