Is null a keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
what is the difference between c and java?
post new interiew question and aptitude test papers
What are c identifiers?
Differentiate between a for loop and a while loop? What are it uses?
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
How can I open files mentioned on the command line, and parse option flags?
m=++i&&++j(||)k++ printf("%d"i,j,k,m)
struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?
Are pointers really faster than arrays?
How we add our function in liabrary as liabrary function. Exp. we want use our int factorical(int); function as int pow(int,int); function working in math header file.