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 |
Explain how do you declare an array that will hold more than 64kb of data?
int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(“%d”,*(*(x+1)+3));
What is bubble sort technique in c?
What is pointer to pointer in c?
what are the advantage of pointer variables? write a program to count the number of vowels and consonants in a given string
write a program in c language for the multiplication of two matrices using pointers?
What is C language ?
Write a program to accept a character & display its corrosponding ASCII value & vice versa?
What are the commands should be given before weiting C Program i.e, Cd.. like
4 Answers IBM, Infonet, Satyam, Tech Mahindra,
How is = symbol different from == symbol in c programming?
How do I round numbers?
What are dangling pointers? How are dangling pointers different from memory leaks?