Differentiate call by value and call by reference?
No Answer is Posted For this Question
Be the First to Post Answer
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
Why calloc is better than malloc?
what is dangling pointer?
Explain how can you determine the size of an allocated portion of memory?
What are the advantages of c preprocessor?
Give the Output : * * * * * * * * * *
Snake Game: This is normal snake game which you can find in most of the mobiles. You can develop it in Java, C/C++, C# or what ever language you know.
7 Answers Accenture, Gridco, IBM, Kevin IT, TCS, Vimukti Technologies,
main() { char *p; p="Hello"; printf("%c\n",*&*p); }
Why c is called top down?
which will be first in c compiling ,linking or compiling ,debugging.
Explain the array representation of a binary tree in C.
What are structure types in C?