Quick actions

cmd+k|ctrl+k

Navigation

Languages

143

Snippet info

Language

Cpp

Visibility

public

Author

ichasbrna237

Created

2023-05-24T01:57:37.969609Z

Updated

2023-05-24T01:57:37.969609Z

#include <stdio.h>
int main(void)
{
    int i = 1;
    do {
        printf("love u \n") ;
        i++;
    }
    while (i <= 3000) ;
    return 0;
}
INFO