Function calling procedures? and their differences? Why should one go for Call by Reference?
No Answer is Posted For this Question
Be the First to Post Answer
What does static mean in c?
Differentiate Source Codes from Object Codes
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?
Can you apply link and association interchangeably?
what will be the output of this program main() { int i=1; while (i<=10); { i++; } }
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
atoi, which takes a string and converts it to an integer. write a program that reads lines(using getline), converts each line to an integer using atoi and computes the average of all the numbers read. also compute the standard deviation
difference between loading and linking
main() { int i=5; printf("%d%d%d%d",i++,i--,i); }
write a program of bubble sort using pointer?
write a c program to find largest of three numbers using simple if only for one time.
What happens if header file is included twice?