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 the commands should be given before weiting C Program i.e, Cd.. like
4 Answers IBM, Infonet, Satyam, Tech Mahindra,
Explain output of printf("Hello World"-'A'+'B'); ?
What is signed and unsigned?
Function shall sum members of given one-dimensional array. However, it should sum only members whose number of ones in the binary representation is higher than defined threshold (e.g. if the threshold is 4, number 255 will be counted and 15 will not) - The array length is arbitrary - output the results to the stdout
Find MAXIMUM of three distinct integers using a single C statement
Write a program to print the following series 2 5 11 17 23 31 41 47 59 ...
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
How can I prevent other programmers from violating encapsulation by seeing the private parts of my class?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
what is C?
sum of two integers values only other then integer it should print invalid input.
write a c program to print a given number as odd or even without using loop statements,(no if ,while etc)