Stripping readable function names
#include<stdlib.h>
#include<stdio.h>
void func(){
printf("Hello. A is less than B");
}
int main()
{
int a=10;
int b=20;
if(a>b)
{
func();
}
return 0;
}

How to overcome this?
Last updated