helllo sir
give me some information of the basic information the
c as printf ,scanf , %d ,%f and why is the main use of
these.
Answer Posted / vignesh1988i
printf();
printf is an in built function which is used as a output
statement........
SYNTAX:
printf("format string ",<list of variables>);
whenever we want to display messages to the user at run time
as well as the output we use printf statement.....
scanf();
this is the input statement... whenever we want to perform
some task using a system we must give input to it... in C
this is done using scanf() function.....
SYNTAX:
scanf("format string",<&variables>);
FORMAT SPECIFERS:
%d is used to print only integer constant formatted output
%f is used to print only real constant numbers output
%c is used to print only a character constant output
these format specifers and all will be stored in the LOOK UP
table in the compailer... when these dosen't match wit that
table . it gives a error
thank you
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
What is the difference between a free-standing and a hosted environment?
What is hungarian notation? Is it worthwhile?
What are the advantages of using linked list for tree construction?
State two uses of pointers in C?
how to introdu5ce my self in serco
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
What does sizeof int return?
What is meant by 'bit masking'?
Can a local variable be volatile in c?
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
What is function what are the types of function?
What are the features of c language?
What is a program flowchart and how does it help in writing a program?
how should functions be apportioned among source files?