why do we use # in c-language?
Answer / raj
This is for including Header files in your 'C' program.
Header files means to include built-in files of your C
library.The #include directive tells the preprocessor to
treat the contents of a specified file as if those contents
had appeared in the source program at the point where the
directive appears. You can organize constant and macro
definitions into include files and then use #include
directives to add these definitions to any source file.
| Is This Answer Correct ? | 7 Yes | 0 No |
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
int i=0,j; j=++i + ++i ++i; printf(" %d",j);
A program to write a number of letters and numbers, such as counting and display
How to write c functions that modify head pointer of a linked list?
what is a void pointer?
What are pointers?
0 Answers Accenture, Tavant Technologies, Zensar,
Why can arithmetic operations not be performed on void pointers?
If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?
What is the meaning of this decleration? unsigned char (*pArray[10][10]); please reply.
Can anyone help me with this please? Need to print the below values.. Thanks 1 1 2 1 2 3 1 2 3 4
Hai why 'c' is the middle language
write a code for large nos multilication (upto 200 digits)