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 |
write a program to find the largest and second largest integer from an array
Define and explain about ! Operator?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }
Write a program to generate the Fibinocci Series
What is variable and explain rules to declare variable in c?
Can you write a programmer for FACTORIAL using recursion?
what are the interview question's in the language c
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
How can I swap two values without using a temporary?
diff .between strcture and union