Is it acceptable to declare/define a variable in a c header?
No Answer is Posted For this Question
Be the First to Post Answer
What is a Deque?
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
what type of language is C?
what is the use of using linked list and array?
what is c?
What does 3 periods mean in texting?
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..
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
why the execution starts from main function
How can you find the day of the week given the date?
Do you know the use of 'auto' keyword?
who is the father of c