Function calling procedures? and their differences? Why should one go for Call by Reference?
No Answer is Posted For this Question
Be the First to Post Answer
Give the rules for variable declaration?
Explain function pointer with exapmles.
write a Program to dispaly upto 100 prime numbers(without using Arrays,Pointer)
26 Answers ADITI, iFlex, Infosys, Oracle, TCS, Unicops, Wipro,
What is the importance of c in your views?
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 to write a program to receive an integer & find its octal equivalent by using for loop?
What is main function in c?
what is c
I have one doubt. What does below statement mean? #define sizeof(operator) where operator can be int or float etc. Does this statement meaningful and where it can be used?
Can you please explain the difference between exit() and _exit() function?
Should I learn data structures in c or python?
what is op? for(c=0;c=1000;c++) printf("%c",c);