ASCII stands for
Answer / hon prajakta
ASCII stands for American Standard Code for Information Interchange.
| Is This Answer Correct ? | 0 Yes | 0 No |
pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()
Is main an identifier in c?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
what defference between c and c++ ?
How can I read data from data files with particular formats?
Give me the code of in-order recursive and non-recursive.
34.what are bitwise shift operators? 35.what are bit fields? What is the use of bit fields in a structure declaration? 36.what is the size of an integer variable? 37.what are the files which are automatically opened when a c file is executed? 38.what is the little endian and big endian? 39.what is the use of fflush() function? 40.what is the difference between exit() and _exit() functions? 41.where does malloc() function get the memory? 42.what is the difference between malloc() and calloc() function? 43.what is the difference between postfix and prefix unary increment operators?
What is the explanation for modular programming?
can a union be self-referenced?
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
What is the difference between #include and #include 'file' ?
Do you know the difference between malloc() and calloc() function?