Write a program to check palindrome number in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
Explain how can you avoid including a header more than once?
biggest of two no's with out using if condition statement
What is the difference between int main and void main in c?
Differentiate between static and dynamic modeling.
What is Memory leakage ?
Can a variable be both static and volatile in c?
Where are local variables stored in c?
Write code for atoi(x) where x is hexadecimal string.
what is the difference between procedure oriented and object oriented progaming language
Explain how can type-insensitive macros be created?
# define prod(a,b)=a*b main() { int x=2; int y=3; printf("%d",prod(x+2,y-10)); } the output of the program is a.8 b.6 c.7 d.none