what is c?
Answers were Sorted based on User's Feedback
Answer / glibwaresoftsolutions
C++ is a general-purpose, high-level programming language used for system and application development. Developed by Bjarne Stroustrup at Bell Labs in 1983, it builds upon the C language while introducing object-oriented features. It supports multiple paradigms, including procedural, functional, and generic programming. This is one of the most commonly asked C++ interview questions.
| Is This Answer Correct ? | 0 Yes | 0 No |
C++ is a general-purpose, high-level programming language used for system and application development. Developed by Bjarne Stroustrup at Bell Labs in 1983, it builds upon the C language while introducing object-oriented features. It supports multiple paradigms, including procedural, functional, and generic programming. This is one of the most commonly asked C++ interview questions.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / saranya
Actually C is low level language.
basically C is implemented in washing macine and other
devices without C no other laguages can be easily evolved
like java,c++ etc and c is easily understandable language
developed by dennis richie it consist of data types,data
structres,string, functions,pointers hashing techniques etc
| Is This Answer Correct ? | 3 Yes | 8 No |
what does exit() do?
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]
What is break in c?
What is #include in c?
How can you convert integers to binary or hexadecimal?
void main() { int i=5; printf("%d",i+++++i); }
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
What is an lvalue in c?
Why does not c have an exponentiation operator?
what is the difference between 123 and 0123 in c?
how to find sum of 5 digits in C?
What are keywords in c with examples?