Difference between MAC vs. IP Addressing
how to add two numbers without using arithmetic operators?
suppose there are five integers write a program to find larger among them without using if- else
How pointer is different from array?
what is the hexidecimal number of 4100?
main() { float a=3.2e40; printf("%d",a); }
Which control loop is recommended if you have to execute set of statements for fixed number of times?
How to reverse a string using a recursive function, with swapping?
What is the difference between class and object in c?
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }
When should we use pointers in a c program?
Why main is not a keyword in c?
what are the advantages of a macro over a function?