Do you know the use of 'auto' keyword?
No Answer is Posted For this Question
Be the First to Post Answer
What functions are used in dynamic memory allocation in c?
Is Exception handling possible in c language?
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason
difference between my-strcpy and strcpy ?
3 Answers Geometric Software, IIM, Infosys,
What is call by value in c?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?
Sir i need notes for structure,functions,pointers in c language can you help me please
difference between i++* and *++i
What does the characters “r” and “w” mean when writing programs that will make use of files?
for (i <= 5 && i >= -1;++i; i > 0) { printf("%d ", i); }
What is pointer in c?