Why main is not a keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is function prototype in c with example?
what will happen if you free a pointer twice after allocating memory dynamically ?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
How do you initialize function pointers? Give an example?
Who invented bcpl language?
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 a segmentation fault?
without using arithmatic operator convert an intger variable x into x+1
sir i wanted to know how we wap in c to add numbers without using arithmetic operator in which digits are entered by user?
Explain what is the heap?
Describe the order of precedence with regards to operators in C.
Why does notstrcat(string, "!");Work?