main difference between c and c++ language
Answer / guest
c is procedure oriented language
c++ is object oriented language
c is a not secure
c++ is a secured
c is low level language
c++ is a middle language
c is top-down approach
c++ is bottom-up approach
| Is This Answer Correct ? | 17 Yes | 1 No |
Binary tree traversing
What do you mean by dynamic memory allocation in c? What functions are used?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
Reverse the bit order in a single macro. eg. i/p = 10010101 --> o/p = 10101001
What are disadvantages of C language.
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
Find MAXIMUM of three distinct integers using a single C statement
What is the explanation for prototype function in c?
When we use void main and int main?
int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????
What are the features of c language?
How was c created?