What is hashing in c?
What are the primitive data types in c?
Under what circumstances does a name clash occur?
What are the 4 types of programming language?
What's the right way to use errno?
Is it acceptable to declare/define a variable in a c header?
Add Two Numbers Without Using the Addition Operator
What is wrong with this statement? Myname = 'robin';
What standard functions are available to manipulate strings?
What are the types of assignment statements?
why do some people write if(0 == x) instead of if(x == 0)?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
How do you define a string?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What does a pointer variable always consist of?