wt is diference between int and int pointer as same as float and float pointer and char and char pointer
8 13775write 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 31435write 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 4349Write 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 20749
How can I trap or ignore keyboard interrupts like control-c?
Explain how do you list files in a directory?
How do you generate random numbers in C?
What are extern variables in c?
What are pointers really good for, anyway?
What is the use of ?: Operator?
Tell us two differences between new () and malloc ()?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
How can I read/write structures from/to data files?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What are the similarities between c and c++?
What are the properties of union in c?
Can a program have two main functions?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
What is hashing in c language?