What is a structure member in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to find the given number is odd or even without using any loops(if,for,do,while)
here is a link to download Let_Us_C_-_Yashwant_Kanetkar
Why do we use int main?
Why is it that not all header files are declared in every C program?
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; }
Why dont c comments nest?
Write a code of a general series where the next element is the sum of last k terms.
how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help
What is the value of y in the following code? x=7;y=0; if(x=6) y=7; else y=1;
In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT
what is the differance between pass by reference and pass by value.
write a program to print largest number of each row of a 2D array