What is difference between stdio h and conio h?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>

4 Answers  


What are the types of pointers in c?

0 Answers  


Explain how can type-insensitive macros be created?

0 Answers  


Explain how do you list a file’s date and time?

0 Answers  


#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?

1 Answers  






Write a program in c to input a 5 digit number and print it in words.

11 Answers  


Give a method to count the number of ones in a 32 bit number?

4 Answers  


When is an interface "good"?

1 Answers  


What is an arrays?

0 Answers  


When should a type cast be used?

0 Answers  


Write a program for Overriding.

0 Answers  


What is an auto variable in c?

0 Answers  


Categories