a character or group of characters that defines a register,or a part of storage
a) memory
b) byte
c) address
d) linear list
What are the two forms of #include directive?
What does sizeof int return?
What is a header file?
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
Explain spaghetti programming?
what are bit fields in c?
How many types of arrays are there in c?
Explain what are multidimensional arrays?
Is c is a low level language?
Explain how can I convert a string to a number?
What is a far pointer?What is the utility?