Answer Posted / mitesh
c is a middle level language.it is easy to understand and write the program.
| Is This Answer Correct ? | 16 Yes | 1 No |
Post New Answer View All Answers
When should a far pointer be used?
What is the use of a static variable in c?
How do you determine the length of a string value that was stored in a variable?
What are the different types of constants?
Is c is a low level language?
What language is lisp written in?
What is declaration and definition 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.
How arrays can be passed to a user defined function
What is atoi and atof in c?
If I have a char * variable pointing to the name of a function ..
Write a program to print ASCII code for a given digit.
Is there a way to compare two structure variables?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
If fflush wont work, what can I use to flush input?