why do some people write if(0 == x) instead of if(x == 0)?
No Answer is Posted For this Question
Be the First to Post Answer
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
Once I have used freopen, how can I get the original stdout (or stdin) back?
for questions 14,15,16,17 use the following alternatives:a.int b.char.c.string.d.float
What is an example of enumeration?
program to find the magic square
how can i print "hello"
Can a variable be both const and volatile?
How can you check to see whether a symbol is defined?
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
What is the difference between malloc calloc and realloc in c?
explain what is fifo?
Explain what is the benefit of using enum to declare a constant?