+ 1
what condition we have to write to get below as otput
int main() { if(condition) printf("we are"); else printr("not idiots"); return 0; } OTPUT as :we are not idiots
1 Réponse
int main() { if(condition) printf("we are"); else printr("not idiots"); return 0; } OTPUT as :we are not idiots