How to declare implicit int in C

1 Answer

0 votes
#include <stdio.h>
 
int main()
{
    const n = 13;    
     
    printf("%d\n", n);
    
    return 0;
}

/*
run:
  
13
 
*/

 



answered Jul 6, 2018 by avibootz

Related questions

1 answer 118 views
1 answer 106 views
1 answer 171 views
1 answer 222 views
4 answers 353 views
3 answers 294 views
...