Explain how can a program be made to print the name of a source file where an error occurs?
No Answer is Posted For this Question
Be the First to Post Answer
Ow can I insert or delete a line (or record) in the middle of a file?
What is a protocol in c?
What should malloc() do?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
What is a nested formula?
How do I read the arrow keys? What about function keys?
write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]
What are extern variables in c?
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.?
the maximum width of a c variable name can be a) 6 characters b) 8 characters c) 10 characters d) 20 characters
What are header files and what are its uses in C programming?
What are pointers? Why are they used?