how can i include my own .h file EX:- alex.h like
#include<alex.h>, rather than #include"alex.h"
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
string reverse using recursion
write a c program to print a given number as odd or even without using loop statements,(no if ,while etc)
Is there a way to jump out of a function or functions?
Is null equal to 0 in sql?
What is dynamic memory allocation?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
How can I remove the trailing spaces from a string?
when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
Which node is more powerful and can handle local information processing or graphics processing?
What are local static variables?