what is the c source code for the below output?
5555555555
4444 4444
333 333
22 22
1 1
22 22
333 333
4444 4444
5555555555
No Answer is Posted For this Question
Be the First to Post Answer
what is the syallabus of computer science students in group- 1?
What are the two types of structure?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What are volatile variables?
Design a program using an array that lists even numbers and odd numbers separately from the 12 numbers supplied by a user.
what is the purpose of the code, and is there any problem with the code? int f( int n, int l, int r ) { return (n << l) >> r; }
what do u mean by Direct access files? then can u explain about Direct Access Files?
What is a substring in c?
Is there any restriction in how many arguments printf or scanf function can take? in which file in my c++ compiler i can see the code for implementation of these two functions??
Explain the difference between structs and unions in c?
What are the data types present in c?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }