signed short constant in c

C Programming Language / Variable in C Language

24650

Program:

#include"stdio.h"
int main()
{
   const signed short a = 657;  // a is signed short constant
   printf("signed short constant: %d \n", a);
   
   return 0;
} 

Output:

signed short constant: 657
Press any key to continue . . .

This Particular section is dedicated to Programs only. If you want learn more about C Programming Language. Then you can visit below links to get more depth on this subject.