what is difference between getchar,putchar functions and
printf and scanf function? does putchar show output only
when input given to it
Answer Posted / suji
getchar() gets only one character from the input.putchar
prints that character.printf prints the text that enter
within doublequotes.scanf gets morethan one input from
console.getchar & putchar gets&puts from & to file.
| Is This Answer Correct ? | 6 Yes | 8 No |
Post New Answer View All Answers
Which header file should you include if you are to develop a function which can accept variable number of arguments?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
How can I do serial ("comm") port I/O?
How do you define a string?
Write a program of prime number using recursion.
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
What is a pointer in c plus plus?
Is main an identifier in c?
which is an algorithm for sorting in a growing Lexicographic order
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
What is 'bus error'?
What are the storage classes in C?
What is I ++ in c programming?