wt is diference between int and int pointer as same as float and float pointer and char and char pointer
8 13491write 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 31144write 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 4274Write 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 20548
When should structures be passed by values or by references?
where are auto variables stored? What are the characteristics of an auto variable?
What is difference between function overloading and operator overloading?
How can a program be made to print the name of a source file where an error occurs?
what is use of malloc and calloc?
What is difference between Structure and Unions?
What is c language used for?
why do some people write if(0 == x) instead of if(x == 0)?
What is the use of function in c?
What is dynamic variable in c?
Explain what does it mean when a pointer is used in an if statement?
What are the uses of null pointers?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
What is realloc in c?
What is array of structure in c?