how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
2 5061what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
2 4590How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
1 6109what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
IBM,
10 16888int main(){ float f=8.0; if(f==8.0) printf("good"); else printf("bad"); } what is the answere and explain it?
3 5311
Explain what standard functions are available to manipulate strings?
What are the types of i/o functions?
Are pointers integer?
i have a written test for microland please give me test pattern
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
What is difference between array and structure in c?
How can I swap two values without using a temporary?
Is c procedural or object oriented?
When is a void pointer used?
What are the benefits of c language?
what are the 10 different models of writing an addition program in C language?
Why is c fast?
Are c and c++ the same?
What are external variables in c?
How pointer is different from array?