Program to find the absolute value of given integer using
Conditional Operators
Answer Posted / abdur rab
#include <stdio.h>
int main ( int argc, char* argv [] )
{
int value = -10;
printf ("\n%d", ( value >= 0 ) ? value : ~(value)
+1 );
}
| Is This Answer Correct ? | 16 Yes | 18 No |
Post New Answer View All Answers
What is pass by reference in c?
which is an algorithm for sorting in a growing Lexicographic order
Explain the advantages and disadvantages of macros.
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
You have given 2 array. You need to find whether they will
create the same BST or not.
For example:
Array1:10 5 20 15 30
Array2:10 20 15 30 5
Result: True
Array1:10 5 20 15 30
Array2:10 15 20 30 5
Result: False
One Approach is Pretty Clear by creating BST O(nlogn) then
checking two tree for identical O(N) overall O(nlogn) ..we
need there exist O(N) Time & O(1) Space also without extra
space .Algorithm ??
DevoCoder
guest
Posted 3 months ago #
#define true 1
#define false 0
int check(int a1[],int a2[],int n1,int n2)
{
int i;
//n1 size of array a1[] and n2 size of a2[]
if(n1!=n2) return false;
//n1 and n2 must be same
for(i=0;i
What is null in c?
Why static variable is used in c?
What is pointer to pointer in c with example?
hi any body pls give me company name interview conduct "c" language only
What is pass by reference in functions?
Do you know the difference between exit() and _exit() function in c?
How can I open a file so that other programs can update it at the same time?
Which is the best website to learn c programming?
What does the error 'Null Pointer Assignment' mean and what causes this error?
What is indirection? How many levels of pointers can you have?