count the numbers between 100 and 300, that star
with 2 and ends with 2

Answers were Sorted based on User's Feedback



count the numbers between 100 and 300, that star with 2 and ends with 2..

Answer / amit sachan

int main()
{
int r,i,q,count=0;
for(i=100;i<300;i++)
{
r=i%10;
q=i/100;
if(r==2&&q==2)
count++;
}
printf("the total no=%d",count)
return(0);
}

Is This Answer Correct ?    40 Yes 1 No

count the numbers between 100 and 300, that star with 2 and ends with 2..

Answer / ajithchukku

10

Is This Answer Correct ?    21 Yes 6 No

count the numbers between 100 and 300, that star with 2 and ends with 2..

Answer / hana

in between 100 to 300 means 200 to 299...
if u see which starts with 2 and ends with 2 then 202,212,222,232,242,252,262,272,282,292....
hence answer is 10..

Is This Answer Correct ?    11 Yes 2 No

count the numbers between 100 and 300, that star with 2 and ends with 2..

Answer / sujit

#include<stdio.h>
void main(void)
{
int i,d1,d2,count=0;
for(i=100;i<=300;i++)
{
while(i>0)
{
d1=i%10;
i=i/10;
d2=i%10;
i=i/10;
if(d1==2&&i==2)
count++;
}
}
printf("%d",count);
}

Is This Answer Correct ?    2 Yes 0 No

count the numbers between 100 and 300, that star with 2 and ends with 2..

Answer / sushma s

PL\SQL Code:

Declare
n number(10) := 0;
begin
for i in 100 .. 300
loop
if (substr(i,1,1) =2) and (substr(i,length(i),1) = 2) then
n := n +1;
dbms_output.put_line('number :'|| i ||' count:' ||n);
end if;
end loop;

end;

O/P: count: 10

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More C Interview Questions

program to find middle element of linklist?

1 Answers   Huawei,


What is a pointer on a pointer in c programming language?

0 Answers  


What is string in c language?

0 Answers  


When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these

1 Answers   Accenture, IBM,


main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?

3 Answers   Excel,






What is adt in c programming?

0 Answers  


Why we use conio h in c?

0 Answers  


Can we compile a program without main() function?

0 Answers  


what is the use of ~ in c lang?????

3 Answers  


biggest of two no's with out using if condition statement

5 Answers  


What is the benefit of using const for declaring constants?

0 Answers  


How do I declare a pointer to an array?

6 Answers   IBM,


Categories