Answer Posted / b.uday kumar
dennis ritchie
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is #pragma statements?
What functions are in conio h?
What is #define used for in c?
Explain data types & how many data types supported by c?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
Why do we use int main instead of void main in c?
Why pointers are used?
If the size of int data type is two bytes, what is the range of signed int data type?
Explain what is gets() function?
How do we make a global variable accessible across files? Explain the extern keyword?
What is difference between union and structure in c?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
which is conditional construct a) if statement b) switch statement c) while/for d) goto
What is the difference between class and object in c?