Display the output as “welcome to FOR LOOP” for 5 times with use of for Loop
#include <stdio.h> int main() { int a ; for ( a = 1 ; a <= 5 ; a ++ ) { printf ( "welcome to FOR LOOP\n" ) ; } 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