What is the difference between void main() and void main (void) give example programme?
parkside's triangle.. create a program like this.. enter the size: 6 enter the seed: 1 output: 1 23 456 7891 23456 789123 sample2: enter the size: 5 enter the seed: 3 output: 3 45 678 9123 45678 parkside should not exceed 10 while its seed should only be not more than 9..
fn f(x) { if(x<=0) return; else f(x-1)+x; }
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }
how to go with this?
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
Why isnt any of this standardized in c?
For what purpose null pointer used?
Explain what is wrong with this program statement?
1 What is a Data Structure?
What does a pointer variable always consist of?
How can I find out how much memory is available?
Explain how can you tell whether a program was compiled using c versus c++?