How is a structure member accessed?
No Answer is Posted For this Question
Be the First to Post Answer
what is a function method?give example?
consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none
I came across some code that puts a (void) cast before each call to printf. Why?
How can I read and write comma-delimited text?
What is a structural principle?
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
What does void main () mean?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
Explain goto?
WRITE A C PROGRAM TO FIND SECOND BIGGEST VALUE FROM THE GIVEN VALUES
Is the C language is the portable language...If yes...Then Why...and if not then what is problem so it is not a Portable language..???
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile