Explain the use of 'auto' keyword in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
What does double pointer mean in c?
How can I dynamically allocate arrays?
#include <stdio.h> int main ( int argc, char* argv [ ] ) { int value1 = 10; int value2 = 5; printf ( "\n The sum is :%d", value1 | value2 ); } This is the answer asked by some one to add two numbers with out using arithmetic operator?Yes this answer is write it given out put as 15.But how????? what is need of following line? int main ( int argc, char* argv [ ] ) how it work?what is the meaning for this line? please explain me.Advance thanks
main() { int a[10]; printf("%d",*a+1-*a+3); }
can we store values and addresses in the same array? explain
how to write optimum code to divide a 50 digit number with a 25 digit number??
find largest of 3 no
Difference between fopen() and open()?
What is the difference between malloc() and calloc()?
How would you use the functions fseek(), freed(), fwrite() and ftell()?
0 Answers Aspire, Infogain, TISL,
what type of errors are checked during compilation
what is the maximum no. of bytes calloc can allocate