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 is the difference between <stdio.h> and "stdio.h"
14 Answers Invendis, Kanbay, Mastek, MathWorks,
What is #define?
how would a 4*3 array A[4][3] stored in Row Major Order?
what is the use of operator ^ in C ? and how it works?
Can a pointer be static?
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output
What is the difference between int and float?
Which header file is used for clrscr?
Can main () be called recursively?
how do we remove the printed character in printf statement and write next it it
sqrt(x+sqrt(x+sqrt(x+sqrt(x))))=2; Find the value of x?
write a program to print calender using for loop.