Write a program to check palindrome number in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
implement general tree using link list
Can a pointer be null?
Why can’t constant values be used to define an array’s initial size?
Write a C program that reads a series of strings and prints only those ending in "ed"
To find whether a number is even or odd without using any conditional operator??
12 Answers College School Exams Tests, IBM,
what is default constructor?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?
how to introdu5ce my self in serco
Differentiate between null and void pointers.
is assignment operator is arithmatic or not