Answer Posted / sri
in C structures are used...but in cpp classes are
used..which is more secured
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
Compare and contrast compilers from interpreters.
What is the difference between new and malloc functions?
Difference between linking and loading?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Apart from dennis ritchie who the other person who contributed in design of c language.
What is wrong with this statement? Myname = 'robin';
What is indirection in c?
What does the c preprocessor do?
Do you have any idea how to compare array with pointer in c?
Explain what is the general form of a c program?
Explain pointers in c programming?
Explain how does flowchart help in writing a program?
Why we use conio h in c?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
What are run-time errors?