Are comments included during the compilation stage and placed in the EXE file as well?
No Answer is Posted For this Question
Be the First to Post Answer
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What is meant by operator precedence?
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? Upload a C program to demonstrate the behaviour of the game.
What is the significance of an algorithm to C programming?
What is the use of getch ()?
What is main () in c?
Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?
What is the purpose of type declarations?
how to write optimum code to divide a 50 digit number with a 25 digit number??
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
0 Answers Amdocs, Apps Associates,
What does the characters “r” and “w” mean when writing programs that will make use of files?
what is stack , heap ,code segment,and data segment