what is the c source code for the below output?
1
0 1
1 0 1
0 1 0 1
1 0 1 0 1
No Answer is Posted For this Question
Be the First to Post Answer
What is typedf?
How do you list a file’s date and time?
In a byte, what is the maximum decimal number that you can accommodate?
The variables are int sum=10,SuM=20; these are same or different?
What is a nested formula?
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6
How is pointer initialized in c?
Why we use stdio h in c?
Explain spaghetti programming?
Predict the output or error(s) for the following: 25. main() { printf("%p",main); }