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?
Answer Posted / prakash
43.postfix unary increment operator is assume the given
number and then add with one number to the given variable or
integer and display with the output .but prefix unary
increment operator is first add with one number t o given
variable or integer and display with the output
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Write a factorial program using C.
Is main is user defined function?
What is call by value in c?
Tell me with an example the self-referential structure?
What is the use of pointers in C?
What is the difference between malloc calloc and realloc in c?
What is a good data structure to use for storing lines of text?
What is the function of this pointer?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
What is enumerated data type in c?
How do you sort filenames in a directory?
How can you access memory located at a certain address?
Give the rules for variable declaration?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.