III.Match the following 5*1=5 1. Formatting character-exit check loop 2. printf( ) - equality 3. = = - 4 bytes 4. float - %s 5. do while loop - to print output on the
Answers
Answer:
There is given the simple program of c language do while loop where we are printing the table of 1.
There is given the simple program of c language do while loop where we are printing the table of 1.#include<stdio.h>
There is given the simple program of c language do while loop where we are printing the table of 1.#include<stdio.h>int main(){
There is given the simple program of c language do while loop where we are printing the table of 1.#include<stdio.h>int main(){int i=1;
There is given the simple program of c language do while loop where we are printing the table of 1.#include<stdio.h>int main(){int i=1;do{
There is given the simple program of c language do while loop where we are printing the table of 1.#include<stdio.h>int main(){int i=1;do{printf("%d \n",i);
There is given the simple program of c language do while loop where we are printing the table of 1.#include<stdio.h>int main(){int i=1;do{printf("%d \n",i);i++;
There is given the simple program of c language do while loop where we are printing the table of 1.#include<stdio.h>int main(){int i=1;do{printf("%d \n",i);i++;}while(i<=10);
There is given the simple program of c language do while loop where we are printing the table of 1.#include<stdio.h>int main(){int i=1;do{printf("%d \n",i);i++;}while(i<=10);return 0;