Answer Posted / sunny_baldota@yahoo.co.in
Jawaharlal Nehru
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
How do you use a 'Local Block'?
What should malloc() do?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
Explain what is a 'locale'?
What is the use of printf() and scanf() functions?
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
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
What is dynamic dispatch in c++?
What are inbuilt functions in c?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
How will you declare an array of three function pointers where each function receives two ints and returns a float?
What is volatile c?
How many data structures are there in c?
How can I insert or delete a line (or record) in the middle of a file?
Explain high-order and low-order bytes.