Why static is used in c?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is getch c?

0 Answers  


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

2 Answers  


Hierarchy decides which operator a) is most important b) is used first c) is fastest d) operates on largest numbers

1 Answers  


What is else if ladder?

0 Answers  


how can i get this by using for loop? * ** * **** * ******

3 Answers   Excel,






Ow can I insert or delete a line (or record) in the middle of a file?

0 Answers  


how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12

0 Answers  


write a function which accept two numbers from main() and interchange them using pointers?

3 Answers  


How can I increase the allowable number of simultaneously open files?

1 Answers   ABC,


what is the use of ~ in c lang?????

3 Answers  


What is external and internal variables What is dynamic memory allocation what is storage classes in C

3 Answers  


Is boolean a datatype in c?

0 Answers  


Categories