Posts by JHK • 1 point
1 post
-
-4
votes1
answer51
viewsQ: How can I get this code to display the first 100 even numbers not multiples of 10?
#include <stdio.h> #include <conio.h> int main () { int count; for (count=0;count<200;count=count+2) printf ("%d \t ",count); if (count%10==0) { count++; } getch(); return(0); }…