if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True"
a) Never
b) Always
c) When the value of i is 0
d) all of the above
what is C?
What is adt in c programming?
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
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
write a recursive program in'c'to find whether a given five digit number is a palindrome or not
What is static memory allocation? Explain
Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?
What is keyword in c?
Why Modern OS are interrupt driven?Give an example
Explain the advantages of using macro in c language?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
What is pass by reference in functions?