What is true about the following C Functions
(a) Need not return any value
(b) Should always return an integer
(c) Should always return a float
(d) Should always return more than one value
Answer Posted / devendra kumar gupta
need not return any value
Is This Answer Correct ? | 18 Yes | 3 No |
Post New Answer View All Answers
How can I call a function with an argument list built up at run time?
Write a program to generate the Fibinocci Series
write a c program in such a way that if we enter the today date the output should be next day's date.
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
What is the stack in c?
What does != Mean in c?
What are the 5 elements of structure?
Does c have function or method?
What is 2 d array in c?
A banker has a seif with a cipher. Not to forget the cipher, he wants to write it coded as following: each digit to be replaced with the difference of 9 with the current digit. The banker chose a cipher. Decipher it knowing the cipher starts with a digit different than 9. I need to write a program that takes the cipher from the keyboard and prints the new cipher. I thought of the following: Take the input from the keyboard and put it into a string or an array. Go through the object with a for and for each digit other than the first, substract it from 9 and add it to another variable. Print the new variable. Theoretically I thought of it but I don't know much C. Could you give me any kind of hint, whether I am on the right track or not?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
What is %lu in c?
Explain what does the format %10.2 mean when included in a printf statement?
What are the application of void data type in c?
Is calloc better than malloc?