What is the significance of c program algorithms?
No Answer is Posted For this Question
Be the First to Post Answer
What is integer constants?
Can we change the value of #define in c?
what is different between auto and local static? why should we use local static?
write a program to find the given number is prime or not
2 Answers Accenture, Vasutech,
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
What is volatile in c language?
Can you subtract pointers from each other? Why would you?
wht is the difference between KPO and BPO ?
2 Answers Accenture, BPO, HCK, HCL, Infosys,
What are dangling pointers? How are dangling pointers different from memory leaks?
Explain b+ tree?
Is c pass by value or reference?