Post New Answer View All Answers
What is a method in c?
Explain what are header files and explain what are its uses in c programming?
What is the best way to comment out a section of code that contains comments?
What is %lu in c?
How to explain the final year project as a fresher please answer with sample project
What are multidimensional arrays?
What does c mean before a date?
How do we open a binary file in Read/Write mode in C?
Why header file is used in c?
What is c value paradox explain?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
How can a process change an environment variable in its caller?
What is function pointer c?
What is binary tree in c?
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.