what is meant by c

Answer Posted / kumar

c is a procedure oriented programming language.It is
developed by Dennis Ritchie in 1972. It is new innovation of
the computer programming language.
It is also the best standard computer programming language.

Is This Answer Correct ?    5 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are structures and unions? State differencves between them.

619


What are the rules for the identifier?

673


What are header files why are they important?

583


Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given

2520


What are local static variables?

620






#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.

5210


What is pointers in c?

658


Explain what is wrong with this statement? Myname = ?robin?;

1027


Can we declare function inside main?

571


What is the best way of making my program efficient?

572


What are compound statements?

630


Explain what is output redirection?

669


What functions are used for dynamic memory allocation in c language?

602


FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above

625


5 Write an Algorithm to find the maximum and minimum items in a set of ā€˜nā€™ element.

1583