In how much time you will write this c program?
Prime nos from 1 to 1000
Answers were Sorted based on User's Feedback
What are Macros? What are its advantages and disadvantages?
How is a two dimensional array passed to function when the order of matrix is not known at complie time?
What is the use of getchar functions?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
how to set Nth bit of variable by using MACRO
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
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
How we can insert comments in a c program?
Can we initialize extern variable in c?
What is pointer to pointer in c?
What are inbuilt functions in c?
Describe dynamic data structure in c programming language?