When we use void main and int main?
No Answer is Posted For this Question
Be the First to Post Answer
Is a house a shell structure?
What is typeof in c?
Can we change the value of #define in c?
Why do we use static in c?
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
m=++i&&++j(||)k++ printf("%d"i,j,k,m)
what is meant by c
Are local variables initialized to zero by default in c?
1. Write the function int countchtr(char string[ ], int ch); which returns the number of times the character ch appears in the string. Example, the call countchtr(“She lives in NEWYORK”, ‘e’) would return 3.
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....