How to find a missed value, if you want to store 100 values in a 99 sized array?
No Answer is Posted For this Question
Be the First to Post Answer
What is the right type to use for boolean values in c?
write a program that prints a pascal triangle based on the user input(like how many stages) in an efficient time and optimized code?
Can you please explain the difference between exit() and _exit() function?
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
What is alloca() and why is its use discouraged?
How can I implement a delay, or time a users response, with sub-second resolution?
Explain the use of #pragma exit?
Can we compile a program without main() function?
What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }
8 Answers MindFire, TCS, Tech Mahindra,
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
Explain about the constants which help in debugging?
What should be keep precautions while using the recursion method?