Differentiate Source Codes from Object Codes
The basic difference between source code and object code is that source code is written by a programmer while an object code is produced when a source code is compiled. Source code is created with a text editor or a visual programming tool and then saved in a file and object code is processed by the CPU in a computer.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are volatile variables in c?
What does the && operator do in a program code?
2.main { int x,j,k; j=k=6;x=2; x=j*k; printf("%d", x);
what is pointer
Write a routine that prints out a 2-D array in spiral order!
What does sizeof function do?
Explain goto?
what type of language is C?
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?
Why functions are used in c?
How can I delete a file?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?