Skip to main content

WHILE LOOP EXAMPLE IN C LANGUAGE

Simple example on how while loop works.
Syntax:


while(condition) {}
Condition : A condition is assigned to tell while loop that till when it should continue its loop.
Example to print 10 even numbers.
#include<stdio.h>
int main()
{
int num = 0;
while(num <=10) //Repeat this block 
{
         if(num%2 == 0)
         {
            printf(" %d ",num);
         }
num++;// This simply means num = num +1
}
return 0;
}
Output:

  • 0 2 4 6 8
Description:


  • In this example we first repeat some block of statements till the value of "num" variable reaches to 10.Then we check if the current number is even and print it.

  • while(num <=10) { }- this statement  repeats whatever is written inside its block 11 times.
  • i.e 0 to 10 . When it goes in while loop the 11th time then 

  • if(num%2==0) - This statement means that when number is divided by 2 then remainder is zero. This is simply to check if value in "num" variable is even or not.

  • num++ : This means num = num +1;
Description in marathi /เคฎเคฐाเค ीเคค เคตเคฐ्เคฃเคจ

  • เคนा while loop เคšा เค‰เคฆเคนเคฐเคฃ เค†เคนे. เคน्เคฏा เค‰เคงเคฐ्เคจाเคค เฅง เคคे เฅงเฅฆ เค…ंเค•ाเคจ เคฎเคง्เคฏे even numbers เค•ोเคฃ เค•ोเคฃเคคे เค†เคนे เคคे เคจिเคตเคกเคฒे เค†เคนे.

  • while(num <=10) { } - เคน्เคฏा เค•ोเคก เคšा เค…เคฐ्เคฅ เค…เคธा เค†เคนे เค•ि เคœो เคชเคฐ्เคฏंเคค "num" เคšी เค•िंเคฎเคค เฅงเฅฆ เค•िเคตा เฅงเฅฆ เคชेเค•्เคทा เคฒเคนाเคจ เค…เคธेเคฒ เคคो เคชเคฐ्เคฏंเคค "{ }" เคน्เคฏाเคค เคฒिเคนिเคฒेเคฒा เค•เคกे เคตाเคฐंเคตाเคฐ เคฐเคจ เคนोเคฃाเคฐ.

  • num++ - เคน्เคฏा เค•ोเคก เคฎुเคณे num เคšी เค•िंเคฎเคค เฅง เคจे  เคตाเคขเคคे. (num = num+เฅง). เคนा เคจाเคนी เคฒिเคนिเคฒा เคคเคฐ "num" เคšी เค•िंเคฎเคค เคคเคธीเคš เคฐाเคนीเคฒ เค†เคฃि while loop เคšाเคฒเคคเคš เคฐाเคนเคฃाเคฐ.เคฎ्เคนเคฃूเคจ เคนि เค•ाเคณเคœी เค˜ेเคคเคฒी เคชाเคนिเคœे.

  • if(num%2==0) - เคน्เคฏा เค•ोเคกเคšा เค…เคฐ्เคฅ เค†เคนे เค•ि "num" เคฎเคง्เคฏे เค…เคธเคฒेเคฒ्เคฏा เค…ंเค•ाเคฒा เคœेเคต्เคนा เฅจ เคจि เคญाเค—ीเคคเคฒे เคคเคฐ เค‰เคฐ्เคตเคฐिเคค เคญाเค—(remainder) เคถुเคจ्เคฏ เคฎिเคณेเคฒ. เคœเคฐ เคถुเคจ्เคฏ เคฎिเคณाเคฒा เคคเคฐ เคคो "num" even number เค…เคธा เคฎ्เคนंเคŸเคฒा เคœाเคˆเคฒ.

Comments

Popular posts from this blog

Interfacing Load Cell with Raspberry Pi 3 (via HX711) ⚖️

Interfacing Load Cell with Raspberry Pi 3 (via HX711) ⚖️ Interfacing Load Cell with Raspberry Pi 3 (via HX711) ⚖️ A load cell is a transducer that converts force (weight) into an electrical signal. The HX711 is a precision 24-bit analog-to-digital converter (ADC) designed for weigh scales. Today we’ll connect a load cell to Raspberry Pi 3 using the HX711 module. ๐Ÿงช ๐Ÿ”ง Components Required Component Quantity Raspberry Pi 3 1 Load Cell 1 HX711 Module 1 Jumper Wires 6 Breadboard (optional) 1 ๐Ÿ”Œ Pin Connections HX711 Pin Raspberry Pi Pin Pin Number VCC 5V Pin 2 GND Ground Pin 6 DT GPIO 5 Pin 29 SCK GPIO 6 Pin 31 Figure: Load Cell connected to Raspberry Pi 3 via HX711 ๐Ÿ’ป Python Code from hx711 import HX711 import RPi.GPIO as GPIO import time hx = HX711(dout_pin=5, pd_sck_pin=6) hx.set_reading_format("MSB", "MSB") hx.set_reference_unit(1) hx.reset()...

Interfacing Sound Sensor with Raspberry Pi 3

๐Ÿ”น Overview The KY-037 is a high-sensitivity sound detection sensor that can detect noise levels in the environment. It provides both analog and digital outputs. In this tutorial, we’ll interface the digital output of KY-037 with Raspberry Pi 3 Model B+ (without using an ADC like MCP3008) and detect sound events.

Interfacing Water Flow Sensor with Raspberry Pi 3 ๐Ÿšฟ

Interfacing Water Flow Sensor with Raspberry Pi 3 ๐Ÿšฟ ๐ŸŽฏ Objective To measure the flow rate of water using a Water Flow Sensor (YF-S201) and Raspberry Pi 3. Useful in smart irrigation and water management systems. ๐Ÿงฐ Components Required Component Quantity Raspberry Pi 3 1 YF-S201 Water Flow Sensor 1 10K Pull-down Resistor 1 Jumper Wires As required Breadboard 1 ⚡ Circuit Connections Sensor Pin Connect To Red (VCC) 5V (Raspberry Pi) Black (GND) GND (Raspberry Pi) Yellow (Pulse Out) GPIO18 (Pin 12) with pull-down resistor ๐Ÿง  Python Code import RPi.GPIO as GPIO import time FLOW_SENSOR = 18 pulse_count = 0 def countPulse(channel): global pulse_count pulse_count += 1 GPIO.setmode(GPIO.BCM) GPIO.setup(FLOW_SENSOR, GPIO.IN, pull_up_down=GPIO.PUD_DOWN) GPIO.add_event_detect(FLOW_SENSOR, GPIO.FALLING, callback=countPulse) try: while True: pulse_count = 0 time.sleep(1) flow_rate = (pulse_count / 7.5) ...