What is difference between structure and union with example?
No Answer is Posted For this Question
Be the First to Post Answer
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
What does int main () mean?
What is use of #include in c?
Explain a file operation in C with an example.
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
How are portions of a program disabled in demo versions?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
What is the total generic pointer type?
What is Conio.h ?
Explain what does the function toupper() do?
What is the explanation for prototype function in c?