You are on page 1of 2

S2 BTech

C Programming
Code-Chef Submission

Name: ANANDHA KRISHNAN. R


Roll No: AM.EN.U4ECE17109

QUESTION: 5:TEST
EASY
Your program is to use the brute-force approach in order to find the
Answer to Life, the Universe, and Everything. More precisely...
rewrite small numbers from input to output. Stop processing input
after reading in the number 42. All numbers at input are integers of
one or two digits.
//ANANDHA KRISHNAN.R
#include<stdio.h>
int main()
{
while(1)
{
int n;
scanf("\n%d",&n);
if(n==42)
break;
printf("\n%d",n);
}
return 0;
}
APPROACH:I am taking the number input inside the while loop and I
am checking if it is 42 the loop will be terminated. Inside the loop I
am reading elements and then printing.

You might also like