What are the characteristics of arrays in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program in c to replace any vowel in a string with z?
what is the use of operator ^ in C ? and how it works?
a<<1 is equivalent to a) multiplying by 2 b) dividing by 2 c) adding 2 d)none of the above
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
what will be the output of this program main() { int i=1; while (i<=10); { i++; } }
write a addition of two no. program with out using printf,scanf,puts .
biggest of two no's with out using if condition statement
What is the difference between #include and #include 'file' ?
What is a pointer value and address in c?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
What is the proper way of these job Tell me about there full work
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.?