what are the general concepts of c and c++
Answers were Sorted based on User's Feedback
CONCEPTS OF 'C' :
Basics dealing with declaration of variables and constants....
Control Structures (if, if-else , switch)
Looping structures (for,while,do-while)
ARRAYS
Macros and CONSTANTS
POINTERS
STRUCUTRES & UNIONS
FILES
FUNCTIONS (Sub routines)
etc....
in C++ :
OOPS
thank u
| Is This Answer Correct ? | 2 Yes | 0 No |
What is indirection? How many levels of pointers can you have?
Explain how do you list files in a directory?
What is meant by 'bit masking'?
What is #include stdio h and #include conio h?
why we wont use '&' sing in aceesing the string using scanf
How can I determine whether a machines byte order is big-endian or little-endian?
What Is The Difference Between Null And Void Pointer?
Find if a number is power of two or not?
What is LINKED LIST? How can you access the last element in a linked list?
What is structure and union in c?
Find Index of least significant bit set in an Integer. ex. int value is say 10001000 results should be 4.
How to implement variable argument functions ?