What is meant by inheritance?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between %d and %i?
Explain how do you list files in a directory?
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
Who is the founder of c language?
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
how to write hello word without using semicolon at the end?
Does * p ++ increment p or what it points to?
how to print this sereis 2 4 3 6 5..........?
consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none
how to write a program which adds two numbers without using semicolon in c
EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>
Is it possible to execute code even after the program exits the main() function?