Print the foll in C...eg when n=5 the o/p must b
+ +
+ + + +
+ + + + +
+ + + +
+ +
Answer / ataraxic
char *m[] = { "+ +", "++ ++", "+++++" };
for (i=1; i <= 5; i++)
printf("%s\n", m[5%i]);
| Is This Answer Correct ? | 1 Yes | 4 No |
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
Why do we use static in c?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
Explain what is a const pointer?
int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?
swapping of two numbers without using third variable using AND and OR operators
what are the various memory handling mechanisms in C ?
what is difference between ANSI structure and C99 Structure?
What does 4d mean in c?
Why c is called a mid level programming language?
How can I implement sets or arrays of bits?