compare array with pointer?
Explain can you assign a different address to an array tag?
consagous technology placement paper
What is the difference between int main and void main?
What is meant by realloc()?
Is c pass by value or reference?
Why does the call char scanf work?
value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What is pointer to pointer in c language?
write a program to convert a expression in polish notation (postfix) to inline (normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix
how to print the character with maximum occurence and print that number of occurence too in a string given ?
What are structure members?