Explain what is the difference between #include and #include 'file' ?
No Answer is Posted For this Question
Be the First to Post Answer
Can the sizeof operator be used to tell the size of an array passed to a function?
What is break in c?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
Can you assign a different address to an array tag?
second highest number in a given set of numbers
What is the use of header?
What is build process in c?
Is that possible to store 32768 in an int data type variable?
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?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
Why are all header files not declared in every c program?
c program to subtract between two numbers without using '-' sign and subtract function.