" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Verified answer
Dalam bahasa C:#include <stdio.h>
int main(){
for(int i=1; i<=10; i++)
printf("%d\n",i);
return 0;
}