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 |
how to write a program which adds two numbers without using semicolon in c
formula to convert 2500mmh2o into m3/hr
how write a addtion of two single dimensional array using of pointer in c language?
Hai why 'c' is the middle language
In which header file is the null macro defined?
praagnovation
What standard functions are available to manipulate strings?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }
When is the “void” keyword used in a function?
print ur name without using any semicolon in c/c++....
21 Answers Bosch, TCS, Wipro,
What is a segmentation fault?