What are the key features of C?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
Simple and efficient
Portable
Procedural language
Rich set of built-in functions and operators
Low-level access to memory
Pointer support
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / nashiinformaticssolutions
• Object-Oriented Programming: Encapsulation, Inheritance, Polymorphism.
• Memory management via pointers.
• Support for both high-level and low-level programming.
• Strong type checking.
• STL (Standard Template Library) for reusable components.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
Simple and efficient
Portable
Procedural language
Rich set of built-in functions and operators
Low-level access to memory
Pointer support.
| Is This Answer Correct ? | 0 Yes | 0 No |
Simple and efficient
Portable
Procedural language
Rich set of built-in functions and operators
Low-level access to memory
Pointer support
| Is This Answer Correct ? | 0 Yes | 0 No |
• Object-Oriented Programming: Encapsulation, Inheritance, Polymorphism.
• Memory management via pointers.
• Support for both high-level and low-level programming.
• Strong type checking.
• STL (Standard Template Library) for reusable components.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
• Object-Oriented Programming: Encapsulation, Inheritance, Polymorphism.
• Memory management via pointers.
• Support for both high-level and low-level programming.
• Strong type checking.
• STL (Standard Template Library) for reusable components.
| Is This Answer Correct ? | 0 Yes | 0 No |
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
What does main () mean in c?
How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.
for example user gives input as " 20 or 20.0 or rs 20.0 or 20.00 or rs20 and so .. on " and the output should be stored as " rs.20.00 " in a variable
What does the characters “r” and “w” mean when writing programs that will make use of files?
write a program to display the frequency of each element in a given array in c language
I have a varargs function which accepts a float parameter?
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
How do I use strcmp?
write a c program to calculate the income tax of the employees in an organization where the conditions are given as. (I.T. = 0 if income <100000 I.T = 10% if income _< 200000 it = 20% if income >_ 200000)
7 Answers Consultancy, DBU, FD, JK Associates, Kobe, Satyam,
Do string constants represent numerical values?
What are register variables? What are the advantage of using register variables?