What is meant by inheritance?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
What is preprocessor with example?
What are structural members?
c language interview questions & answer
How can I delete a file?
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?
what defference between c and c++ ?
Tell us bitwise shift operators?
to find the program of matrix multiplication using arrays
Explain what is the difference between a free-standing and a hosted environment?
What is that continue statement??
What is the difference between char array and char pointer?