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