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 / snvs.narayana
43.prefix operator increase and then use value.
post fix operator use the value and then increase.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is sizeof int in c?
Differentiate fundamental data types and derived data types in C.
how is the examination pattern?
What is unary operator?
What's the difference between constant char *p and char * constant p?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What is #line?
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
How can I do graphics in c?
What is #define?
What are reserved words with a programming language?
What is return type in c?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
Is null valid for pointers to functions?