Cbasic
Top 115 C Programming Interview Questions & Answers
1. What does static variable mean? Ans: Static variables are the variables which ke…
1. What does static variable mean? Ans: Static variables are the variables which keep their values between the characteristic calls. They are init…
Read more »»»Here are some File-Handling Questions and Answers:- Question 1:Write a program in C to create and store information in a text file. Solution: #inc…
Read more »»»Question 1: Write a programme to illustrate the different ways of declaration and initialization of structure variable by storing information of thr…
Read more »»»Question 1: Write a program in C to display the first 10 natural numbers. Solution: #include <stdio.h> void main() { int i; printf…
Read more »»»
Cbasic
1. What does static variable mean? Ans: Static variables are the variables which ke…