What are the types of c language?
No Answer is Posted For this Question
Be the First to Post Answer
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; }
What is ponter?
#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?
What is the use of #define preprocessor in c?
What is the difference between fork() and vfork()?
What is the newline escape sequence?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
What is a static function in c?
How can I trap or ignore keyboard interrupts like control-c?
Define function pointers?
Can the “if” function be used in comparing strings?
In C language what is a 'dangling pointer'?