what is available in C language but not in C++?
Answer Posted / sara
pointers r available in c which is not available in c++
| Is This Answer Correct ? | 8 Yes | 44 No |
Post New Answer View All Answers
Is it better to bitshift a value than to multiply by 2?
How a string is stored in c?
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What are the application of void data type in c?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
Do you have any idea how to compare array with pointer in c?
Explain the difference between strcpy() and memcpy() function?
Write program to remove duplicate in an array?
What is an lvalue in c?
The statement, int(*x[]) () what does in indicate?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
Give basis knowledge of web designing ...
What is a structure in c language. how to initialise a structure in c?