Are the outer parentheses in return statements really optional?
No Answer is Posted For this Question
Be the First to Post Answer
can i know the source code for reversing a linked list with out using a temporary variable?
What is that continue statement??
When do we get logical errors?
int main(){ float f=8.0; if(f==8.0) printf("good"); else printf("bad"); } what is the answere and explain it?
What is far pointer in c?
code for selection sort?
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 many parameters should a function have?
Write a C function to search a number in the given list of numbers. donot use printf and scanf
regarding pointers concept
Write a C program in Fibonacci series.
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }