Programming in C using codeblocks
1.Convert the following to a do/while loop. It should produce exactly the same output.
#include
int main(){
int i=0, k=0;
float j=0;
int counter = 10;
printf("Begin counting");
for (i=0; i < counter; i++) {
printf(i);
}
return 0;
}
2. Write a C program that displays your name and address (or if you value your privacy, a fictitious name and address).