Is it fine to write void main () or main () in c?
No Answer is Posted For this Question
Be the First to Post Answer
Where in memory are my variables stored?
Which is more efficient, a switch statement or an if else chain?
What are the 5 types of organizational structures?
What is a structural principle?
How can I find the modification date of a file?
How many keywords are there in c?
IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.
Given a number N, product(N) is the product of the digits of N. We can then form a sequence N, product(N), product(product(N))… For example, using 99, we get the sequence 99, 99 = 81, 81 = 8. Input Format: A single integer N Output Format: A single integer which is the number of steps after which a single digit number occurs in the sequence. Sample Test Cases: Input #00: 99 Output #00: 2 Explanation: Step - 1 : 9 * 9 = 81 Step - 2 : 8 * 1 = 8 There are 2 steps to get to this single digit number. Input #01: 1137638147
What is structure padding and packing in c?
Explain how can I write functions that take a variable number of arguments?
For what purpose null pointer used?
write a program for odd numbers?