Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336 What will be the output of the program ? #include<stdio.h> int main() { int a=250; printf("%1d\n", a); return 0; } ?->(Show Answer!)
1. What will be the output of the program ? #include<stdio.h> int main() { int a=250; printf("%1d\n", a); return 0; }
Ask Your Doubts Here
Comments
By: guest on 01 Jun 2017 06.01 pm
int a=250; The variable a is declared as an integer type and initialized to value 250. printf("%1d\n", a); It prints the value of variable a. Hence the output of the program is 250.