programming in c lanugaue programm will errror error with
two header file one as stdio.h and other one is conio.h
Answer / mustafa sathaliya
This error comes b'coz you have not set the library path .
Is This Answer Correct ? | 4 Yes | 1 No |
/*what is the output for*/ void main() { int r; printf("Naveen"); r=printf(); getch(); }
Finding a number multiplication of 8 with out using arithmetic operator
Find the largest number in a binary tree
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
#include<stdio.h> main() { FILE *ptr; char i; ptr=fopen("zzz.c","r"); while((i=fgetch(ptr))!=EOF) printf("%c",i); }
how to delete an element in an array
What is the problem with the following code segment? while ((fgets(receiving array,50,file_ptr)) != EOF) ;
main() { extern out; printf("%d", out); } int out=100;
Is the following code legal? struct a { int x; struct a *b; }
why the range of an unsigned integer is double almost than the signed integer.
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
How we print the table of 3 using for loop in c programing?