C Programming and Technical Logical Reasoning Mathematical Reasoning

#include

int main()
{
printf("%d %dn", 32<0);
printf("%d %dn", 32>>-1, 32>>-0);
return 0;
}

Read Solution (Total 5)

C Other Question

#include

int main()
{
printf("%d %dn", 32<0);
printf("%d %dn", 32>>-1, 32>>-0);
return 0;
}
A no is palindrome if it equal to the no formed by reversing its decimal reapesent no.
Input you need to fill in a function which takes two
Input: Input1-length of array,
1<=input1<=100 input2-an array of +ve integer
output: set output1[i], 0<=i=<:input1, to "Palindrome" otherwise set it to "not"
eg: input: 2{101,12}
output:{Palindrome, Not}