what is c?

Answer Posted / ravi pratap

actually c is the mother of programming language, which is mainly used for programing of various devices which are meant for structural programming.this basically includes procedure oriented pattern of pointers functions,arraysetc

Is This Answer Correct ?    3 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?

816


What is file in c language?

581


in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none

608


all c language question

1878


What is string in c language?

630






What are run-time errors?

602


Who invented bcpl language?

709


What are the advantages of c language?

668


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

5217


How can I get the current date or time of day in a c program?

654


How are variables declared in c?

601


How does selection sort work in c?

629


What is the benefit of using #define to declare a constant?

610


What is getch() function?

654


What is the difference between int main and void main?

578