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 time complexity c?
Who is the founder of c language?
What does %d do in c?
What is NULL pointer?
What type is sizeof?
In C programming, what command or code can be used to determine if a number of odd or even?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
what is the difference between NULL & NUL keywords in C?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
What are the 4 data types?
write a program to rearrange the array such way that all even elements should come first and next come odd
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?