without using arithmatic operator solve which number is
greater??????????
Answer / niranjan vg
use relational operator
(a > b)
this is not a arithematic operator.
or you can use conditional operator
(a>b)?a:b;
| Is This Answer Correct ? | 25 Yes | 3 No |
Write a program to compute the following 1!+2!+...n!
What is dangling pointer in c?
What is omp_num_threads?
who will call your main function in c under linux?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
What is typedef example?
Explain enumerated types in c language?
write a c program to change only the 3rd bit of the particular number such that other bits are not affected.. if bitnum=10(say.. it can be any no..
what is available in C language but not in C++?
10 Answers CTS, TCS,
we all know about the function overloading concept used in C++ and we all learnt abt that.... but that concept is already came in C in a very smaller propotion ... my question is IN WHICH CONCEPT THERE IS A USE OF FUNCTION OVERLOADING IS USED in C language?????????????
Which of the following about automatic variables within a function is correct ? a.its type must be declared before using the variable b.they are local c.they are not initialised to zero d.they are global.
write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]