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 |
void main () { int x = 10; printf ("x = %d, y = %d", x,--x++); } a. 10, 10 b. 10, 9 c. 10, 11 d. none of the above
Code for 1>"ascii to string" 2>"string to ascii"
1 Answers Aricent, Global Logic,
main( ) { int a[ ] = {10,20,30,40,50},j,*p; for(j=0; j<5; j++) { printf(“%d” ,*a); a++; } p = a; for(j=0; j<5; j++) { printf(“%d ” ,*p); p++; } }
how to check whether a linked list is circular.
main() { int i =0;j=0; if(i && j++) printf("%d..%d",i++,j); printf("%d..%d,i,j); }
main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
C program to print magic square of order n where n > 3 and n is odd
What is the problem with the following code segment? while ((fgets(receiving array,50,file_ptr)) != EOF) ;
why java is platform independent?
main() { int i=400,j=300; printf("%d..%d"); }
void main() { char ch; for(ch=0;ch<=127;ch++) printf(“%c %d \n“, ch, ch); }
Write a function to find the depth of a binary tree.
13 Answers Adobe, Amazon, EFI, Imagination Technologies,