What is the difference between pure virtual function and virtual function?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is the benefit of using const for declaring constants?
What is static memory allocation?
List some applications of c programming language?
List some of the static data structures in C?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
The file stdio.h, what does it contain?
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
What is main () in c?
compute the nth mumber in the fibonacci sequence?
10 Answers Canon, HPL, Satyam, TCS,
Write the test cases for checking a variable having value in range -10.0 to +10.0?
f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?
9 Answers Hughes, Tech Mahindra,
What is a memory leak? How to avoid it?