fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int i=0;
  6. int j=1;
  7. printf("The even mumbers are :\n");
  8. do
  9. {
  10. printf("%d\t",i);
  11. i=i+2;
  12. }
  13. while(i<=100);
  14. printf("\nThe odd numbers are :\n");
  15. do
  16. {
  17. printf("%d\t",j);
  18. j=j+2;
  19. }
  20. while(j<100);
  21. return 0;
  22. }
  23.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
The even mumbers are :
0	2	4	6	8	10	12	14	16	18	20	22	24	26	28	30	32	34	36	38	40	42	44	46	48	50	52	54	56	58	60	62	64	66	68	70	72	74	76	78	80	82	84	86	88	90	92	94	96	98	100	
The odd numbers are :
1	3	5	7	9	11	13	15	17	19	21	23	25	27	29	31	33	35	37	39	41	43	45	47	49	51	53	55	57	59	61	63	65	67	69	71	73	75	77	79	81	83	85	87	89	91	93	95	97	99