Explain the difference between malloc() and calloc() in c?
No Answer is Posted For this Question
Be the First to Post Answer
implement NAND gate logic in C code without using any bitwise operatior.
What is false about the following A compound statement is a.A set of simple statments b.Demarcated on either side by curly brackets c.Can be used in place of simple statement d.A C function is not a compound statement.
Two's compliment of -5
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.
How can I call fortran?
what is the purpose of the code, and is there any problem with it. unsigned int v[10]; unsigned int i = 0; while (i < 10) v[i] = i++;
void main() { int s[4][2]={ {1234,56},{1212,33},{1434,80},{1312,78} }; int (*p)[2]; int i,j,*pint; for(i=0;i<=3;i++) { p=&s[i]; pint=p; printf("\n"); for(j=0;j<=1;j++) printf("%d",*(pint+j)); } } while running this program it shows a warning-suspicious pointer conversion ie pint=p; my que is why should we assign the value of p to pint again.why cant we use it directly as *(p+j)..but if i use like tat the o/p is garbage value..
Dear Sir, we are required the bubble sorting programs Regs Prem
What are the parts of c program?
Explain in detail how strset (string handling function works )pls explain it with an example.
simple program for virtual function?
1)which of following operator can't be overloaded. a)== b)++ c)?! d)<=