Welcome to your C Language-I DATE:October 10, 2024

Name of Student

1.int Data type require _____________________________ number of bytes required to store data

2.int x=234;
y=sizeof(x);
What is the value of y

3.x=2
printf("%d",x++)
What is output.

4.which of the following is an exist control loop

5.int x=10,s=0;
while(i<10)
{
s=s+i;
}
printf("%d",s);
What is output

6.which of them is not a correct variable name?

7.What is Data Type

8.Which of them is/are the Entry control loop

9.Which of them is not a type of operator

10.Which of them is not a binary Operator

11.x=23
y=(x>20):10:12;
What is value of y

12.int X=2
switch(X)
{
case 1"
printf("ONE");
case 2:
printf("TWO");
break;
detault:
printf("Default");
break;
}
What is output

13.int X=1;
switch(X)
{
case 1"
printf("ONE");
case 2:
printf("TWO");
break;
detault:
printf("Default");
break;
}

14.Function call by ____________________________

15.The Varaible that value we are passing is know as _____________________

16.The Variable that capture the value of the actural Argument is known as ___________________

17.Declaration of fuction is called ________________________

18.Which is incorrect for the constant

19.What is output
int i=11,s=0;
do
{
s=s+i;
} while(i<10);
printf("%d",s);

20.Which is true for Structure

21.Sturcture declartion is called _____________

22.Which of them is not a function type?

23.int fact();
is a Function prototype that means

24.void Fact() means

25.By default a fucntion can return an ___________ type value

Add a Comment

Your email address will not be published. Required fields are marked *