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 should malloc() do? Return a null pointer or a pointer to 0 bytes?
What is c programing language?
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
write a c program to change only the 3rd bit of the particular number such that other bits are not affected.. if bitnum=10(say.. it can be any no..
#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }
Write a programe print the sum of series 0,1,2,.....10
a memory of 20 bytes is allocated to a string declared as char *s then the following two statements are executed: s="Etrance" l=strlen(s); what is the value of l ? a.20 b.8 c.9 d.21
without using arithmatic operator solve which number is greater??????????
4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
What is the function of this pointer?
0 Answers Agilent, ZS Associates,
What is calloc()?
What is the difference between getch() and getche()?