Which of the following is not a valid declaration for main
()?
1) int main()
2) int main(int argc, char *argv[])
3) They both work
Answers were Sorted based on User's Feedback
any string of bits of length 'n' represents a unique non- negative integer between.............?
what is constant pointer?
what is ur strangth & weekness
0 Answers Cognizant, LG Soft, NetEnrich,
what is printf
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
Write a program to produce the following output in c language? 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
what is c programming?
Explain threaded binary trees?
What is the use of volatile?
Which is best book for data structures in c?
What are the two types of structure?