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
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
say the following declaration is correct nr not. int b=a,n=0;
What is masking?
what is software?
What is the maximum no. of arguments that can be given in a command line in C.?
what is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
What is a shell structure examples?
What is the meaning of ?
Apart from dennis ritchie who the other person who contributed in design of c language.
write a program to display the numbers in the following format 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 2 2 2 2 2 3 3 3 4
Why we use void main in c?