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
Is main a keyword in c?
What are extern variables in c?
24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?
Explain what are bus errors, memory faults, and core dumps?
How old is c programming language?
what is c
int far *near * p; means
What is Function Pointer? Explain with example?
what is void pointer?
What are identifiers in c?
what are the general concepts of c and c++
Just came across this question, felt worth sharing, so here it is I want you to make a C/C++ program that for any positive integer n will print all the positive integers from 1 up to it and then back again! Let's say n=5 I want the program to print: 1 2 3 4 5 4 3 2 1. Too easy you say? Okay then... You can ONLY USE: 1 for loop 1 printf/cout statement 2 integers( i and n) and as many operations you want. NO if statements, NO ternary operators, NO tables, NO pointers, NO functions!