write a program to find lcm and hcf of two numbers??
Tell me can the size of an array be declared at runtime?
Is c high or low level?
10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
What is string constants?
What is pivot in c?
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
What would be an example of a structure analogous to structure c?
What are the advantages of using macro in c language?
#define d 10+10 main() { printf("%d",d*d); }
What is nested structure with example?
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.?
What is the explanation for modular programming?