write a program that types this pattern:
12345678987654321
12345678 87654321
1234567 7654321
123456 654321
12345 54321
1234 4321
123 321
12 21
1 1
No Answer is Posted For this Question
Be the First to Post Answer
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Illustrate it summing the series 2+4+6+......to n terms using (i) while loop (ii) do-while loop
How are portions of a program disabled in demo versions?
What are the data types present in c?
What is a Genralised LInked List?? Please give a detailed explation of it..
How many bytes are occupied by near, far and huge pointers (dos)?
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
Is a house a shell structure?
What does typeof return in c?
Print all the palindrome numbers.If a number is not palindrome make it one by attaching the reverse to it. eg:123 output:123321 (or) 12321
class foo { public: static int func(const char*& p) const; }; This is illegal, why?
What are runtime error?