How to use shot if in printf with C

2 Answers

0 votes
#include <stdio.h>
#include <stdbool.h>
  
int main(void) {
    bool b = true;
   
    printf("%s", b ? "true" : "false");
     
    return 0;
}
   
   
   
   
/*
run:
     
true
     
*/

 



answered Sep 12, 2021 by avibootz
0 votes
#include <stdio.h>
#include <stdbool.h>
  
int main(void) {
    bool b = true;
   
    fputs(b ? "true" : "false", stdout);
     
    return 0;
}
   
   
   
   
/*
run:
     
true
     
*/

 



answered Sep 12, 2021 by avibootz

Related questions

1 answer 118 views
118 views asked Sep 12, 2021 by avibootz
1 answer 129 views
129 views asked Sep 12, 2021 by avibootz
4 answers 253 views
253 views asked Jul 12, 2020 by avibootz
2 answers 176 views
1 answer 115 views
115 views asked May 14, 2022 by avibootz
1 answer 205 views
205 views asked Sep 17, 2021 by avibootz
1 answer 248 views
...