Answer Posted / ravi
c was designed after Ada and Basic .so A for ada and B for
basic , so a new language was developed by Denise Rithchie
and it was C.
| Is This Answer Correct ? | 32 Yes | 11 No |
Post New Answer View All Answers
Is flag a keyword in c?
What happens if a header file is included twice?
Write a program to generate the Fibinocci Series
When would you use a pointer to a function?
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.
Not all reserved words are written in lowercase. TRUE or FALSE?
What do you understand by friend-functions? How are they used?
What is a program flowchart and how does it help in writing a program?
What are register variables? What are the advantage of using register variables?
All technical questions
What is sizeof array in c?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
Can a local variable be volatile in c?
Define recursion in c.
What is call by value in c?