What is Full Form of C and Why We use C

Answer Posted / akash

it is language after B

Is This Answer Correct ?    39 Yes 28 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can you write the function prototype, definition and mention the other requirements.

641


Explain how many levels deep can include files be nested?

620


Why calloc is better than malloc?

561


What is modeling?

632


What is #line in c?

550






Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)

594


write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.

4968


What is an arrays?

642


What is the best organizational structure?

627


Why is structure padding done in c?

627


Difference between linking and loading?

681


What would happen to X in this expression: X += 15; (assuming the value of X is 5)

1281


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

616


What is the difference between pure virtual function and virtual function?

635


Can a void pointer point to a function?

558