Answer Posted / akash
array is a collecation of elments
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What Is The Difference Between Null And Void Pointer?
Describe the modifier in c?
How can you access memory located at a certain address?
What is the use of define in c?
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); } }
How do I convert a string to all upper or lower case?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
Write a program of prime number using recursion.
Which type of language is c?
What is null pointer in c?
What is a const pointer?
What is string function c?
What is malloc and calloc?
What is meant by high-order and low-order bytes?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.