Mar 09 2007 03:03 PM 15364 22 1. results in a syntax error 2. outputs tim 3 3. outputs garbage 4. prints tim and terminates abruptly"> printf ("%d" ,printf {"tim") ); 1. results in a syntax error 2. outputs tim 3 3. outputs garbage 4. prints tim and terminates abruptly Rujul alok Sep 11th, 2011 Syntax error but if it is: printf("%d",printf("tim")); then output is: tim3 monuavi26 Profile Answers by monuavi26 Questions by monuavi26 Mar 20th, 2009 The Answer is 2. printf function returns the number of characters printed, so it returns 3 and "tim" is already printed due to the call to printf("tim"). So the output is tim 3. Answer Question Select Best Answer
Mar 09 2007 03:03 PM 15364 22 1. results in a syntax error 2. outputs tim 3 3. outputs garbage 4. prints tim and terminates abruptly"> printf ("%d" ,printf {"tim") ); 1. results in a syntax error 2. outputs tim 3 3. outputs garbage 4. prints tim and terminates abruptly Rujul alok Sep 11th, 2011 Syntax error but if it is: printf("%d",printf("tim")); then output is: tim3 monuavi26 Profile Answers by monuavi26 Questions by monuavi26 Mar 20th, 2009 The Answer is 2. printf function returns the number of characters printed, so it returns 3 and "tim" is already printed due to the call to printf("tim"). So the output is tim 3. Answer Question Select Best Answer
monuavi26 Profile Answers by monuavi26 Questions by monuavi26 Mar 20th, 2009 The Answer is 2. printf function returns the number of characters printed, so it returns 3 and "tim" is already printed due to the call to printf("tim"). So the output is tim 3.