When should you not use a type cast?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of getch ()?
Program to display given 3 integers in ascending order
Can you add pointers together? Why would you?
How can I invoke another program from within a C program?
What is the difference between text files and binary files?
what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }
Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
What is the meaning of && in c?
What are inbuilt functions in c?
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }