Sunday, July 15, 2012

A program to know about printf() function

Write this program on your c turbo editor, run and analyze the result,and let me know if you like ,please reply

#include<stdio.h>
#include<conio.h>
void main()
{
printf("\n%d",printf("what you see"));
getch();                             \*waiting for a key board hit.*/
}