how to make a scientific calculater ?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
class foo { public: static int func(const char*& p) const; }; This is illegal, why?
Is fortran faster than c?
How can you tell whether two strings are the same?
What is the difference between int main and void main?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
What is atoi and atof in c?
How would you find a cycle in a linked list?
What are the different pointer models in c?
Toggle nth bit in a given integer - num
Is there any book to know about Basics of C Language?
If the size of int data type is two bytes, what is the range of signed int data type?