What is Full Form of C and Why We use C

Answer Posted / sakshi

C language was renamed from BCPL second alphabet...

This language was designed fast,reliable,efficient,portable
system software..........

Is This Answer Correct ?    4 Yes 12 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what is the heap?

618


while initialization of array why we use a[][2] why not a[2][]...?

1863


What is the use of function in c?

709


What is the difference between struct and typedef struct in c?

655


Explain the difference between malloc() and calloc() in c?

576






what will be the output for the following main() { printf("hi" "hello"); }

9318


What do you understand by friend-functions? How are they used?

643


Is fortran still used today?

602


Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant

667


What is c system32 taskhostw exe?

585


main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }

915


Write a program on swapping (100, 50)

636


What language is c written?

577


write a program in c language to print your bio-data on the screen by using functions.

6247


What is the purpose of realloc()?

667