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 |
Can you please explain the difference between strcpy() and memcpy() function?
Explain what are the standard predefined macros?
How is = symbol different from == symbol in c programming?
main() { intx=2,y=6,z=6; x=y=z; printf(%d",x) }
5 Answers Amazon, HCL, Thought Works,
Tell us two differences between new () and malloc ()?
Can we access array using pointer in c language?
fn f(x) { if(x<=0) return; else f(x-1)+x; }
Differentiate between a for loop and a while loop? What are it uses?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
HOW TO HANDLE EXCEPTIONS IN C
What is the most efficient way to count the number of bits which are set in a value?
discuss the steps needed to get a program from source code to executable in a system?