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
Is anything faster than c?
Is return a keyword in c?
What is a #include preprocessor?
Write a C program linear.c that creates a sequence of
processes with a given length. By
sequence it is meant that each created process has exactly
one child.
Let's look at some example outputs for the program.
Here the entire process sequence consists of process 18181:
Sara@dell:~/OSSS$ ./linear 1
Creating process sequence of length 1.
18181 begins the sequence.
An example for a sequence of length three:
Sara@dell:~/OSSS$ ./linear 3
Creating process sequence of length 3.
18233 begins the sequence.
18234 is child of 18233
18235 is child of 18234
........ this is coad .... BUt i could not compleate it .....:(
#include
What are the differences between new and malloc in C?
What is main () in c?
Why should I prototype a function?
What are the similarities between c and c++?
What is the function of this pointer?
What are the different types of control structures?
how logic is used
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What is the method to save data in stack data structure type?
How can I find the modification date and time of a file?
Is python a c language?