what is associativity explain
what is the precidence for * and & , * and ++
how the folloing declaration work
1) *&p;
2) *p++;
No Answer is Posted For this Question
Be the First to Post Answer
Is there any book to know about Basics of C Language?
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 console in c language?
What is graph in c?
What are the modifiers available in c programming language?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What are preprocessor directives in c?
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
What are the advantages of Macro over function?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What is break in c?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above