can we write a program in c for printf and scanf without
using header file stdio.h



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

Post New Answer

More C Interview Questions

which header file contains main() function in c?

17 Answers   Google, HCL, TCS,


C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions

0 Answers  


What are the 5 data types?

0 Answers  


Write a C program that reads a series of strings and prints only those ending in "ed"

2 Answers   Accenture,


what is a static function

10 Answers   Satyam,


write a c program to print the next of a particular no without using the arithmetic operator or looping statements?

1 Answers   TCS,


how can we Declare a variable in c without defining it.

1 Answers   TCS,


who is the father of C Language?

20 Answers   CTS, UST,


Which is best linux os?

0 Answers  


#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?

3 Answers  


write a program to swap two variables a=5 , b= 10 without using third variable

5 Answers  


how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y

4 Answers   TCS,


Categories