What is static and volatile in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is foreign key in c language?
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; }
Differentiate between #include<...> and #include '...'
How do you determine the length of a string value that was stored in a variable?
a character variable can at a time store a) 1 character b) 8 characters c) 254 characters d) none of the above
Write a program that takes three variables(a,b,c) in as separate parameters and rotates the values stored so that value a goes to b,b,to c and c to a
write a program that eliminates the value of mathematical constant e by using the formula e=1+1/1!+1/2!+1/3!+
how to find the kth smallest element in the given list of array elemnts.
which type of aspect you want from the student.
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
What is meant by keywords in c?
What is build process in c?