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

What is a global variable in c?

1 Answers  


print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar

4 Answers   IBM,


What is a program flowchart?

1 Answers  


? ???Mirror Mirror on the wall????????

1 Answers   channel V, DPI,


main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }

4 Answers  


write a program for 7*8 = 56 ? without using * multiply operator ? output = 56

6 Answers   Xavient,


Why dont c comments nest?

1 Answers  


code for replace tabs with equivalent number of blanks

1 Answers   Bosch,


Explain goto?

1 Answers  


What does void main () mean?

1 Answers  


main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }

10 Answers   TCS, Vector,


What is wrong in this statement? scanf(“%d”,whatnumber);

1 Answers  


Categories