int main()
{
Int n=20,i;
For(i=0;i<=n;i--)
{
Printf(“-“);
Return 0;
No Answer is Posted For this Question
Be the First to Post Answer
write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.
What is a pointer?
Why ordinary variable store only one value
Tell me what are bitwise shift operators?
ABCDCBA ABC CBA AB BA A A
Why do we use null pointer?
What are the 4 data types?
Is it possible to execute code even after the program exits the main() function?
#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }
14 Answers CDAC, GATE, NDS, TCS,
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
Are pointers integer?