Write a program to print factorial of given number without using recursion?
No Answer is Posted For this Question
Be the First to Post Answer
which one is highest Priority in c? a)=,b)+,c)++,d)==
Explain the process of converting a Tree into a Binary Tree.
There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side?
What is zero based addressing?
main() { int a; a=++100; printf("%d",a); getch(); }
write a program to display the numbers in the following 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
Taking an example,differentiate b/w loader and linker ?
What is a pointer?
for(i=1;i>0;i++); printf("i=%d",i); what will be the answer????
what is the difference between malloc() and calloc() function?