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 to execute a program using if else condition and the output should enter number and the number is odd only...
What is a header file?
Is fortran faster than c?
What does typeof return in c?
Explain union.
hi any body pls give me company name interview conduct "c" language only
How can I access an I o board directly?
What are predefined functions in c?
What is the difference between new and malloc functions?
we have to use realloc only after malloc or calloc ? or we can use initially with out depending on whether we are using malloc or calloc in our program ?
do ne body have any idea about the salary for the we r going to have interview. yup .. u got it right ..i m talking abt NIC.
11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage