GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Tech FAQs  >  OOPS

 Print  |  
Question:  could any one explan me what happens in this program.

main(){
int i=10;
i=(++i)/(i++);
printf("i=%d",i);
}




May 05, 2006 13:56:04 #3
 srinivas   Member Since: Visitor    Total Comments: N/A 

RE: could any one explan me what happens in this progr...
 
i know that the output is 2.but i want how the complier gives it.
     

 

Back To Question