c program strcat with size code example
Example 1: size_t in c
/*
The datatype size_t is unsigned integral type.
It represents the size of any object in bytes and is returned by the
sizeof operator.
It can never be negative.
*/
Example 2: c print sizeof char
char b = 'b';
printf("the size of b is %d",sizeof(b));