Write a program to know whether the input number is an armstrong number.
No Answer is Posted For this Question
Be the First to Post Answer
main() { int i=5; printf("%d%d%d%d",i++,i--,i); }
What is void main () in c?
main() { printf("hello"); fork(); }
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
which will be first in c compiling ,linking or compiling ,debugging.
Explain what is meant by high-order and low-order bytes?
What is union and structure in c?
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
how to do in place reversal of a linked list(singly or doubly)?
how to find anagram without using string functions using only loops in c programming
What do you mean by recursion in c?