What are the different types of control structures?
No Answer is Posted For this Question
Be the First to Post Answer
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); }
What is a Deque?
What do you mean by command line argument?
Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
Tell me when is a void pointer used?
What is volatile in c language?
1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(ā%dā,x); --x; } }
How can I find out how much free space is available on disk?
Define the scope of static variables.
write a program to display the array elements in reverse order in c language
why we are using semicolon at the end of printh statment
how c source file in converted to exe file