Is Exception handling possible in c language?
WHOT IS CHAR?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
what are the stoge class in C and tel the scope and life time of it?
What is the method to save data in stack data structure type?
What is the best way to comment out a section of code that contains comments?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
Write a small C program to determine whether a machine's type is little-endian or big-endian.
Given an array A[n+m] of n+m numbers, where A[1] ... A[n] is sorted and A[n+1] ... A[n+m] is sorted. Design a linear time algorithm to obtain A[1...n+m] sorted using only O(1) extra space. Time Complexity of your algorithm should be O(n) and Space Complexity O(1).
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 c-code for 5+55+555+5555+55555+555555+5555555. Output will be it's answer...
How can I find out the size of a file, prior to reading it in?
What is static and volatile in c?