Answer Posted / surya
O-> One
T-> Two
like
| Is This Answer Correct ? | 26 Yes | 5 No |
Post New Answer View All Answers
What are the 5 organizational structures?
Explain can static variables be declared in a header file?
#include
What are the 4 data types?
Explain what is #line used for?
What is the stack in c?
Can the size of an array be declared at runtime?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
Can main () be called recursively?
What do you understand by normalization of pointers?
write a program to create a sparse matrix using dynamic memory allocation.
Can we replace the struct function in tree syntax with a union?
Explain what is the difference between functions getch() and getche()?
Is c pass by value or reference?
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above