1,4,8,13,21,30,36,45,54,63,73,?,?.
Answer Posted / vignesh1988i
84
| Is This Answer Correct ? | 1 Yes | 10 No |
Post New Answer View All Answers
What does calloc stand for?
What is scope and lifetime of a variable in c?
What is structure and union in c?
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
What is malloc and calloc?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
What are the data types present in c?
Why do we use header files in c?
How can I delete a file?
What is main return c?
What are register variables in c?
what are the 10 different models of writing an addition program in C language?
Write a program with dynamically allocation of variable.
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
explain what is a newline escape sequence?