Answer Posted / chirag
C is object oriented language.
C is very easy language.
| Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
What should malloc(0) do?
Explain how do you use a pointer to a function?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
Is fortran still used today?
What is difference between stdio h and conio h?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
What is the meaning of typedef struct in c?
Tell me what is the purpose of 'register' keyword in c language?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
Explain a pre-processor and its advantages.
What do you understand by normalization of pointers?
What is external variable in c?
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
What does 2n 4c mean?