programming in c lanugaue programm will errror error with
two header file one as stdio.h and other one is conio.h



programming in c lanugaue programm will errror error with two header file one as stdio.h and other ..

Answer / mustafa sathaliya

This error comes b'coz you have not set the library path .

Is This Answer Correct ?    4 Yes 1 No

Post New Answer

More C Code Interview Questions

/*what is the output for*/ void main() { int r; printf("Naveen"); r=printf(); getch(); }

4 Answers  


Finding a number multiplication of 8 with out using arithmetic operator

8 Answers   Eyeball, NetApp,


Find the largest number in a binary tree

7 Answers   Infosys,


void func1(int (*a)[10]) { printf("Ok it works"); } void func2(int a[][10]) { printf("Will this work?"); } main() { int a[10][10]; func1(a); func2(a); } a. Ok it works b. Will this work? c. Ok it worksWill this work? d. None of the above

1 Answers   HCL,


#include<stdio.h> main() { FILE *ptr; char i; ptr=fopen("zzz.c","r"); while((i=fgetch(ptr))!=EOF) printf("%c",i); }

1 Answers  






how to delete an element in an array

2 Answers   IBM,


What is the problem with the following code segment? while ((fgets(receiving array,50,file_ptr)) != EOF) ;

1 Answers  


main() { extern out; printf("%d", out); } int out=100;

1 Answers  


Is the following code legal? struct a { int x; struct a *b; }

2 Answers  


why the range of an unsigned integer is double almost than the signed integer.

1 Answers  


main(int argc, char *argv[]) { (main && argc) ? main(argc-1, NULL) : return 0; } a. Runtime error. b. Compile error. Illegal syntax c. Gets into Infinite loop d. None of the above

4 Answers   HCL, LG,


How we print the table of 3 using for loop in c programing?

7 Answers  


Categories