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  >  Placement Papers  >  Birlasoft  >  Technical

 Print  |  
Question:  int a=1;
int ab=4;
int main()
{
int b=3,a=2;
printf("%i*/%i*/%*/i",a,b,ab);
}
What will be the output?




August 08, 2005 11:04:59 #3
 sandeep paliwal   Member Since: Visitor    Total Comments: N/A 

RE: int a=1;
int ab=4;
int main()
{
int b=3,a=2;
printf("%i*/%i*/%*/i"

 
answer is 2*/3*/%4/i
     

 

Back To Question