How can I open files mentioned on the command line, and parse option flags?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between void main() and void main (void) give example programme?
Is fortran still used today?
explain what are pointers?
What are the advantages and disadvantages of c language?
void main() {int a[5],i,b=16; for(i=0;i<5;i++) a[i]=2*i; f(a,5,b); for(i=0;i<5;i++) printf("\n %d",a[i]); printf("\n %d",b); } f(int *x,int n,int y) { int i; for(i=0;i<n;i++) *(x+i)+=2; y=y+2; }wat r the errors in the prg.and improvise the prg to get o/p.?
Write a main() program that calls this function at least 10 times. Try implementing this function in two different ways. First, use an external variable to store the count. Second, use a local variable. Which is more appropriate?
what is develop in c language
What is c programming structure?
What is return in c programming?
What are the standard predefined macros?
How does free() know how many bytes to free?
What is malloc and calloc?