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 |
to convert a string without using decrement operater and string functions
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
What is echo in c programming?
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type
#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }
14 Answers CDAC, GATE, NDS, TCS,
What is wrong with this code?
What are the different types of control structures in programming?
what is the similarities between. system call and library function?
What is table lookup in c?
How can we see the Expanded source code and compiled code for our source program in C?
Why doesnt the call scanf work?