Ans:
printf ( "format string=""", list of="" variables="" ) ;
format string="" can contain,
%f for printing real values
%d for printing integer values
%c for printing character values
When i execute this instruction on dev c++ i got a garbage value .If you want to try this try the below code .
#include<stdio.h>
#include<conio.h>
int main()
{
printf("%d");
getch();
}

0 comments:
Post a Comment