What's new

C programming "ano ang error po?"

m a e 0 9

Journeyman
#include <stdio.h>
#include <stdbool.h>


int main() {
bool realityCheck = true;
int doesItExist;
doesItExist = schrodingersFunction();
if(doesItExist == realityCheck)
printf("It does!");
else
printf("No it doesnt!");

return 0;
}
 
paano po ?
C:
#include <stdio.h>
#include <stdbool.h>

bool schrodingersFunction(/*some arguemnt*/) {
    // return boolean
}

int main() {
bool realityCheck = true;
int doesItExist;
doesItExist = schrodingersFunction();
if(doesItExist == realityCheck)
printf("It does!");
else
printf("No it doesnt!");

return 0;
}
 
C:
#include <stdio.h>
#include <stdbool.h>

bool schrodingersFunction(/*some arguemnt*/) {
    // return boolean
}

int main() {
bool realityCheck = true;
int doesItExist;
doesItExist = schrodingersFunction();
if(doesItExist == realityCheck)
printf("It does!");
else
printf("No it doesnt!");

return 0;
}
thank you so much po

thank you so much po
what if po yung need na output po ay

It·does!

No·it·doesnt!

C:
#include <stdio.h>
#include <stdbool.h>

bool schrodingersFunction(/*some arguemnt*/) {
    // return boolean
}

int main() {
bool realityCheck = true;
int doesItExist;
doesItExist = schrodingersFunction();
if(doesItExist == realityCheck)
printf("It does!");
else
printf("No it doesnt!");

return 0;
}
What if po yung need na output po ay
It does!
No it doesn't!
 
Last edited:

Similar threads

Back
Top