Skip to content
Snippets Groups Projects
Commit 38ebfb61 authored by Stanisław Pokora's avatar Stanisław Pokora
Browse files

Upload New File

parent bce9c630
Branches
No related merge requests found
#include <stdbool.h>
bool verify(int m,int r){
if(m<=0 || r <= 0)
return false;
else
return true;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment