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,855 questions

51,776 answers

573 users

How to write specific code if the version is C99 in C

2 Answers

0 votes
#include <stdio.h>

#if __STDC_VERSION__ == 199901L
#define C99
#endif

int main()
{
#ifdef C99
	puts("C99");
#else
	puts("not c99");
#endif
}



/*
run:

C99

*/

 



answered Aug 8, 2024 by avibootz
0 votes
#include <stdio.h>

int main()
{
    printf("%ld\n", __STDC_VERSION__);
      
    if (__STDC_VERSION__ == 199901L) {
       puts("Code for C99");
    }
}



/*
run:

199901
Code for C99

*/

 



answered Aug 8, 2024 by avibootz

Related questions

2 answers 204 views
1 answer 122 views
1 answer 213 views
1 answer 83 views
2 answers 230 views
1 answer 145 views
...