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 5068what 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 4594How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
1 6112what 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 16896int main(){ float f=8.0; if(f==8.0) printf("good"); else printf("bad"); } what is the answere and explain it?
3 5323
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Where does the name "C" come from, anyway?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
Why is c so popular?
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
What is the mean of function?
Why does the call char scanf work?
What is declaration and definition in c?
What does the error message "DGROUP exceeds 64K" mean?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
How do you list files in a directory?
Do you know the use of fflush() function?
Explain about the functions strcat() and strcmp()?
What are global variables?
Is sizeof a keyword in c?