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 / fazlur rahamn naik
Printf is nothing but to display the output on to the
screen.
Scanf is used to read data from the user/keyboard.
%d is a format used for integer.
%f is a fromat used for float.
Is This Answer Correct ? | 13 Yes | 1 No |
Post New Answer View All Answers
Explain what are compound statements?
What is the difference between text and binary i/o?
Why static is used in c?
Explain what is the difference between the expression '++a' and 'a++'?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
What is difference between structure and union with example?
What will be the outcome of the following conditional statement if the value of variable s is 10?
What is NULL pointer?
Are comments included during the compilation stage and placed in the EXE file as well?
How can a program be made to print the name of a source file where an error occurs?
What extern c means?
What is the purpose of the statement: strcat (S2, S1)?
Explain how can you determine the size of an allocated portion of memory?
Why is not a pointer null after calling free?