#include #include int main( int argc, char* argv[] ){ int a = atoi( argv[1] ); unsigned b; b = a; printf("Value of B: %u\n", b); return 0; }