What are the types of macro formats?
No Answer is Posted For this Question
Be the First to Post Answer
Why malloc is faster than calloc?
1 1 2 1 2 3 1 2 3 4 1 2 3 1 2 1 generate this output using for loop
What's wrong with "char *p; *p = malloc(10);"?
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
What will the preprocessor do for a program?
n=7623 { temp=n/10; result=temp*10+ result; n=n/10 }
How can I sort a linked list?
What's the difference between a linked list and an array?
given post order,in order construct the corresponding binary tree
Identify the operators that is not used with pointer a. && b. # c. * d. >>
5. distance conversion: Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
What is the difference between static and global variables?