What is New modifiers?
No Answer is Posted For this Question
Be the First to Post Answer
WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
How does C++ help with the tradeoff of safety vs. usability?
Difference between MAC vs. IP Addressing
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
Explain null pointer.
what is mean by Garbage collection ? Please answer me. Advance thanks.
How does free() know how many bytes to free?
What does stand for?
Write a simple program to find the size of different basic data types in C.
how to swap two integers 1 and 32767 without using third variable