wt is diference between int and int pointer as same as float and float pointer and char and char pointer
8 13472write a c program to change only the 3rd bit of the particular number such that other bits are not affected.. if bitnum=10(say.. it can be any no..
10 31119write the output of following code .. main() { static int a[]={10,20,30,40,50}; int *ptr=a; static int arr[2][2]={1,2,3,4}; char str[]="ABCD * 4#"; char *s=str+2; int i,j; for(i=0;i<5,i++) printf("%d",*ptr++); for(i=0;i<2;i++) for(j=0;j<2;j++) printf("%d\n",*(*(n+i)+j)); printf("%c\n%c\n%c\n",*(str+2),*s++,*--s); }
1 4261Write a c program to Find the name that you entered is male name or female name? Such as Sunjay is name of male and Payal is name of female
5 20546
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
What is the use of function in c?
What is cohesion in c?
Can you please explain the difference between syntax vs logical error?
List the different types of c tokens?
Why double pointer is used in c?
Is there any possibility to create customized header file with c programming language?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What is pivot in c?
Explain the difference between structs and unions in c?
Explain low-order bytes.
What are variables c?
What is calloc() function?
What is FIFO?
Are comments included during the compilation stage and placed in the EXE file as well?