What is the meaning of int *x[]();?
Answer / guest
x is a pointer to an array of function which takes no
arguments and returns int
| Is This Answer Correct ? | 1 Yes | 1 No |
wat is the difference between a definition and declaration? float y;---it looks like a declaration..but it s a definition.how?someone explain
What is character set?
Write a program in c to print * * * * * *******
Why do we use static in c?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
5 Answers TCS, Vimukti Technologies,
Write a C program to get the desired output. 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 . . . 1 n..............n 1 Note: n is a positive integer entered by the user.
How can you tell whether a program was compiled using c versus c++?
What is the difference between typeof(foo) and myFoo.GetType()?
write a program to generate 1st n fibonacci prime number
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; }
swap two integer variables without using a third temporary variable?
write a c programs to do multiplication of two numbers with out using arithmatic operator ??????????