What is the difference between void main() and int main()?
Answer / nashiinformaticssolutions
void main() is not standard; int main() is required by the C standard to return an integer.
| Is This Answer Correct ? | 0 Yes | 0 No |
diff between exptected result and requirement?
what is used instead of pointers in java than c?
Given an array A[n+m] of n+m numbers, where A[1] ... A[n] is sorted and A[n+1] ... A[n+m] is sorted. Design a linear time algorithm to obtain A[1...n+m] sorted using only O(1) extra space. Time Complexity of your algorithm should be O(n) and Space Complexity O(1).
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
Why does not use getgh(); and <conio.h> in c language.
how can i make a program with this kind of output.. Enter a number: 5 0 01 012 0123 01234 012345 01234 0123 012 01 0
what is a c-language.what is do.
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
write a c/c++ programthat 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.
How would you obtain the current time and difference between two times?
How important is structure in life?
In a switch statement, what will happen if a break statement is omitted?