What is the general form of function in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how can you restore a redirected standard stream?
what does ‘#include’ mean?
please explain every phase in the "SDLC" in the dotnet.
The differences between Windows XP and Windows Visa
What is Dynamic Initialization.
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
Can you write a programmer for FACTORIAL using recursion?
what is the first address that gets stored in stack according to a C or C++ compiler???? or what will be the first address that gets stored when we write a C source code????????
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
How do you write a program which produces its own source code as its output?
How do you do dynamic memory allocation in C applications?