list the no of files created when c source file is compiled
Answer Posted / viral doshi
.obj
.i
.bak
Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
What is meant by keywords in c?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What is static memory allocation? Explain
Explain what is the benefit of using an enum rather than a #define constant?
How can you tell whether a program was compiled using c versus c++?
What is the difference between a function and a method in c?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
which is an algorithm for sorting in a growing Lexicographic order
What is the use of putchar function?
What is #define?
What are the different categories of functions in c?
What is data types?
What is character set?
Why we write conio h in c?