Does free set pointer to null?
No Answer is Posted For this Question
Be the First to Post Answer
Difference between constant pointer and pointer to a constant.
Find Index of least significant bit set in an Integer. ex. int value is say 10001000 results should be 4.
the maximum width of a c variable name can be a) 6 characters b) 8 characters c) 10 characters d) 20 characters
What do you mean by recursion in c?
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
Explain what is the difference between functions getch() and getche()?
Should I learn c before c++?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
how can we print hellow world programme without using semicolon
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
why java is called as a purely oops language.