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 input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
What is array of pointers to string?
What is a macro, and explain how do you use it?
What is define c?
How to implement a packet in C
Is javascript written in c?
What are pointers? What are different types of pointers?
Explain what is meant by high-order and low-order bytes?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
What is information technology.
int i=~0; uint j=(uint)i; j++; printf(“%d”,j);
progrem to generate the following series 1 12 123 1234 12345