Answer Posted / vignesh1988i
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 |
Post New Answer View All Answers
What is header file in c?
What are valid operations on pointers?
explain what is fifo?
Is array a primitive data type in c?
what are the different storage classes in c?
Is null a keyword in c?
What is the difference between malloc calloc and realloc in c?
What is void main ()?
Can you think of a logic behind the game minesweeper.
Explain the use of bit fieild.
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
Why is this loop always executing once?
How do you determine a file’s attributes?
What is the scope of local variable in c?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above