The size of generic pointer in c is 2 __

Loading

Practice Pointers – The size of generic pointer in c is 2 __

What is the problem in the following declarations?

Loading

Practice Declarations and Initializations – What is the problem in the following declarations?


int func(int);
double func(int);
int func(float);

What is the output of the following code?

			  		

Loading

Practice Declarations and Initializations – What is the output of the following code?


include
void main()
{
int a=0, b=0;
a = (b =75)+9;
printf("
%d, %d ",a,b);
}

How many times “Nagarro” will get printed?


Loading

Practice Control Instructions – How many times “Nagarro” will get printed?


#include

int main()

{

int x;



for (x=-1; x<10;x++)

{

if (x<5)

continue;

else

break;

printf("Nagarro");

}

return 0;

}

Which of the following function is correct that finds the length of a

Loading

Practice Functions – Which of the following function is correct that finds the length of a string?

Declare the following statement ?



“An Array

Loading

Practice Arrays – Declare the following statement ?

“An Array of three pointers to chars”

The use of the break statement in switch statement is

Loading

Practice Control Instructions – The use of the break statement in switch statement is

What logic function is produced by adding an inverter to each input an

Loading

Practice Bitwise Operators – What logic function is produced by adding an inverter to each input and the output of and OR gate?

What will be output of the following “C” code?

Loading

Practice Input / Output – What will be output of the following “C” code?


take int=4,float=8,char=1
main() {
FILE *fp;
printf("%d
",sizeof(fp) );
}

What will be output of the following “C” code?

Loading

Practice Basic Concept – What will be output of the following “C” code?


#include
main()
{
scanf("%d");
printf();
}

which of the following is correct?

What will be output of the following “C” code?

Loading

Practice Control Instructions – What will be output of the following “C” code?


int main( )
{
for( ; ;);
printf("Hello
");
return 0;
}