can we write a program in c for printf and scanf without
using header file stdio.h
Answer / vignesh1988i
ya sure we can write ur own coding for printf & scanf functions.... but writing a function for the two is not that much easy ... in printf we must write our coding such that we have to have contact with VGA ( video graphic application) etc etc....
thank u
| Is This Answer Correct ? | 5 Yes | 5 No |
What is restrict keyword in c?
write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.
Tell me is null always defined as 0(zero)?
Why can't we initialise member variable of a strucutre
What are the advantage of c language?
What is a structural principle?
What is the difference between typedef and #define?
What is indirection?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
Explain is it better to bitshift a value than to multiply by 2?
Given an array of numbers, except for one number all the others occur twice. Give an algorithm to find that number which occurs only once in the array.