What is a c token and types of c tokens?
No Answer is Posted For this Question
Be the First to Post Answer
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }
is assignment operator is arithmatic or not
What is the difference between pure virtual function and virtual function?
hello friends what do u mean by BUS ERROR i got this error while i am doing my program in DATA STRUCTURES
What are the two types of functions in c?
Is main is user defined function?
What is meant by high-order and low-order bytes?
Why header files are used?
the question is that what you have been doing all these periods (one year gap)
write a program to convert a expression in polish notation (postfix) to inline (normal)