What are the c keywords?
No Answer is Posted For this Question
Be the First to Post Answer
What is c value paradox explain?
What are the 4 types of functions?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
How to find the usage of memory in a c program
Explain why C language is procedural?
Explain demand paging.
How many types of functions are there in c?
Does free set pointer to null?
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; }
Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
what are the general concepts of c and c++