Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,885 questions

51,811 answers

573 users

How to enum with one constant in C

2 Answers

0 votes
#include <stdio.h>

enum { ADULT_AGE = 18 };

int main(void) {

    int age = 19;
    
    if (age >= ADULT_AGE) {
        puts("yes");
    }
    else {
        puts("no");
    }
    
    return 0;
}




/*
run:

yes

*/

 



answered Apr 23, 2022 by avibootz
0 votes
#include <stdio.h>

enum { BUFFER_SIZE = 64 };

int main(void) {

    char buffer[BUFFER_SIZE] = "c programming";
    
    puts(buffer);

    return 0;
}




/*
run:

c programming

*/

 



answered Apr 23, 2022 by avibootz

Related questions

1 answer 140 views
1 answer 44 views
2 answers 67 views
2 answers 130 views
130 views asked Sep 17, 2021 by avibootz
1 answer 207 views
207 views asked May 8, 2021 by avibootz
1 answer 158 views
158 views asked May 8, 2021 by avibootz
1 answer 159 views
...