What is Conio.h ?
Answers were Sorted based on User's Feedback
Answer / deepak kumar dhurve
(Console Input Output Header File) used generally used in console based application both can be used ini a single header file,there are no problem using both header file in a single header file.
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / wazid hussain
conio.h stands for consol input output . header file that reads input from input device and send output to the monitor....
| Is This Answer Correct ? | 3 Yes | 0 No |
What is the sizeof () operator?
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
HOW TO FIND OUT THE RREVERS OF A GIVEN DIGIT NUMBER IF IT IS INPUT THROUGH THE KEYBORD BY USING C LANGUAGE
Write a program for the following series: 1*3*5-2*4*6+3*5*7-4*6*8+.................up to nterms
f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?
9 Answers Hughes, Tech Mahindra,
Is it possible to run using programming C for Java Application?
How can I call a function with an argument list built up at run time?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
How to receive strings with spaces in scanf()
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if