What is malloc calloc and realloc in c?
No Answer is Posted For this Question
Be the First to Post Answer
Why do we need functions in c?
What is the difference between strcpy() and memcpy() function in c programming?
What is #ifdef ? What is its application?
#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }
write a program that will accept two integers and will implement division without using the division operator if the second value is an odd number and will implement multiplication without using multiplication operator if the second value is an even number.
What is the explanation for cyclic nature of data types in c?
what is the defrenece between structure and union
What is New modifiers?
Differentiate between #include<...> and #include '...'
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); } }
What are pointers? What are stacks and queues?
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above