Remember
Register
1
new
Chill
new
Puzzles
new
GK
new
Sports
new
Business
Home
Questions
MCQs
Unanswered
Tags
Users
Ask a Question
Write Article
Articles
Connect to us
What is the use of while(1)? [CLOSED]
–1
vote
398
views
C Programming
This question has an answer at:
What is the different between while(0) and while(1) in c language?
c
posted
Sep 5, 2016
by
Sharad Gangurde
Looking for an answer? Promote on:
While(1) Is infinite loop
while(0) willl never enter loop (condition fails 0 = false).
while(1) will be running in infinite loop (condition (1 = true)) ,if we want to braek we should use some (conditions) or break statement .
...