difference between Low, Middle, High Level languages in c ?
No Answer is Posted For this Question
Be the First to Post Answer
4.A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
How do you write a program which produces its own source code as its output?
Explain argument and its types.
What is the use of function in c?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is the benefit of using const for declaring constants?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Please list all the unary and binary operators in C.
Write an algorithm for a program that receives an integer as input and outputs the product of of its digits. E.g. 1234 = 24, 705 = 0
Explain is it better to bitshift a value than to multiply by 2?
What does *p++ do? What does it point to?
In which area global, external variables are stored?