What extern c means?
No Answer is Posted For this Question
Be the First to Post Answer
How do you write a program which produces its own source code as output?
What is use of pointer?
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 are the different types of constants?
Where register variables are stored in c?
how do you execute a c program in unix.
Where are the auto variables stored?
What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
21 Answers ADITI, Student, TCS,
write a function which accept two numbers from main() and interchange them using pointers?
write a function to swap an array a[5] elements like a[0] as a[5],a[1] as a[4],....a[5] as a[0].without using more than one loop and use one array not to use temp array?
What is the memory allocated by the following definition ? int (*x)();
main() { charx; while (x=0;x<=255;x++) printf("\nAscii value %d Character %c,x,x); }