Answer Posted / nataraj
c is an basic language, and c++ is advanced language.and c
is an basic of the program.
| Is This Answer Correct ? | 12 Yes | 1 No |
Post New Answer View All Answers
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
What are static variables in c?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
What are the types of bitwise operator?
What are register variables in c?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
If the size of int data type is two bytes, what is the range of signed int data type?
Is it fine to write void main () or main () in c?
What are qualifiers in c?
How can you return multiple values from a function?
Why is c fast?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
What is #define in c?
how logic is used
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.