|
main()
{
int i=400,j=300;
printf("%d..%d");
},Java, C ,C++, ASP, ASP.net C# ,Struts ,Questions & Answer, Struts2, Ajax, Hibernate, Swing ,JSP , Servlet, J2EE ,Core Java ,Stping, VC++,
HTML, DHTML, JAVASCRIPT, VB ,CSS, interview ,questions, and answers, for,experienced, and fresher
main()
{
int i=400,j=300;
printf("%d..%d");
}
400..300
printf takes values of first two assignments of the program.All of them take only the first two values. If more number of assignments given in the program, Then printf will take garbage values.
300..400.. printf follows stack concept
|