for (i <= 5 && i >= -1;++i; i > 0) {
printf("%d
", i);
}
How to find the given no is odd or even without checking of any condition and loops. (Hint: Using array)
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..
What is your stream meaning?
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6
Can you think of a way when a program crashed before reaching main? If yes how?
Dear Sir, we are required the bubble sorting programs Regs Prem
What is volatile variable how do you declare it?
What is the heap?
Hi, main() { } Is a user defined function or Built in Functionn
how can you print&scan anything using just one character? :) HINT: printf,scanf similer
What is || operator and how does it function in a program?
I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.