,
Share with your friends 

c language programming

6 ratings Views 186 
Author: vikas_b6a788d7 (vikas saini)  View Profile |  View other solutions by this author

Question / Problem


c programming solution facts

Solution

main()

{

 int i=400,j=300;

 printf("%d..%d");

}

Answer:

400..300

Explanation:

printf takes the values of the first two assignments of the program. Any number of printf's may be given. All of them take only the first two values. If more number of assignments given in the program,then printf will take garbage values.

 



Applies to

C

Rank It

Login to rank it

Report


Advertisement