What is the significance of scope resolution operator?
No Answer is Posted For this Question
Be the First to Post Answer
How does normalization of huge pointer works?
diff. between *p and **p
What is the purpose of main( ) in c language?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
1. Write a program to reverse every second word in a given sentence.
A woman had somany gloves and hats 22 red,34 blue, 45 white...there was power cut and she took a glove and how many gloves shud she take so that she gets a pair of glove fr each color??
write a program wch produces its own source code aas its output?
how to create duplicate link list using C???
Write a program to generate the first n terms in the series --- 2,3,5,7,11,...,17
write 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); }
How can I get the current date or time of day in a c program?
Why Modern OS are interrupt driven?Give an example