Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

while loop in c

//While loop, for the largest of two numbers.
#include <stdio.h>
int main(){
	int a, b;
    printf("Enter Values a and b:
");
    scanf("%d %d", &a, &b);
    while (a < b){
    	printf("%d is greater than %d
", b, a);
      	printf("Enter Values a and b:
");
      	scanf("%d %d", &a, &b);
    }
    	printf("%d is greater than %d
", a, b);
      
}
 
PREVIOUS NEXT
Tagged: #loop
ADD COMMENT
Topic
Name
4+1 =