difference between c and c++?
Answers were Sorted based on User's Feedback
Answer / manisha thakur
in c is not a object oriented
in c++ is object oriented
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / mail
in c we using printf and scanf
in c++ we using cin and cout
| Is This Answer Correct ? | 3 Yes | 2 No |
How would you use the functions fseek(), freed(), fwrite() and ftell()?
0 Answers Aspire, Infogain, TISL,
O,T,T,F,F,S,S,E,N,?,?,?,T,F,F,S,S,E,N
What is getch?
What is structure packing in c?
How can you allocate arrays or structures bigger than 64K?
What are dangling pointers in c?
How do we declare variables in c?
What is the significance of an algorithm to C programming?
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
Write a C program to fill a rectangle using window scrolling
How the c program is executed?
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }