print 5,10,15,20,25 using for for loop
#include "stdio.h" #include "stdio.h" int main() { for (int i = 5; i <= 25; i += 5) { printf("%d\n",i); } return 0; }
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment