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 117 views
1 answer 105 views
1 answer 170 views
1 answer 221 views
4 answers 352 views
3 answers 293 views
...