How pointer is different from array?
No Answer is Posted For this Question
Be the First to Post Answer
int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?
Difference between Shallow copy and Deep copy?
Is main() function predfined or userdefined?
What is new line escape sequence?
print the table 5 in loops
Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.
i want the code for printing the output as follows 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4
Write a program to generate random numbers in c?
int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?
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 are the advantages of Macro over function?
What is c method?