Tokens in C - C Tokens



 c tokens

Learn C - C tutorial - c tokens - C examples - C programs

C Tokens

Sample Code

#include <stdio.h>
int main()
{
    const int num = 99;
    const float a = 3.67f;
    const char sex ='M';
    const char text[]="wikitechy.com";
    printf("num=%d \n a=%f \n sex=%c \n text=%s\n",num,a,sex,text);
    return 0;
}

Output

num=99 
 a=3.670000 
 sex=M 
 text=wikitechy.com


View More Quick Examples


Related Searches to Tokens in C - C Tokens