what is op?
for(c=0;c=1000;c++)
printf("%c",c);
Post New Answer View All Answers
What are the rules for identifiers in c?
Explain modulus operator.
what is bit rate & baud rate? plz give wave forms
What is null pointer in c?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
How macro execution is faster than function ?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
What are the 4 types of organizational structures?
How can a process change an environment variable in its caller?
What is a string?
Sir i need notes for structure,functions,pointers in c language can you help me please
What is getch () for?
What is the collection of communication lines and routers called?
Why is main function so important?