What is the 'named constructor idiom'?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the difference between #include "..." And #include <...> In c?
can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?
how the compiler treats any volatile variable?Explain with example.
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
What is the use of a conditional inclusion statement in C?
Which command is more efficient? *(ptr+1) or ptr[1]
What is key word in c language?
What are dangling pointers? How are dangling pointers different from memory leaks?
Write a program to print the prime numbers from 1 to 100?
When would you use a pointer to a function?
write a program wch produces its own source code aas its output?
What is the difference between functions abs() and fabs()?