5
Write an Algorithm to find the maximum and minimum items in a
set of ‘n’ element.
No Answer is Posted For this Question
Be the First to Post Answer
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
regarding the scope of the varibles;identify the incorrect statement: a.automatic variables are automatically initialised to 0 b.static variables are are automatically initialised to 0 c.the address of a register variable is not accessiable d.static variables cannot be initialised with any expression
how to impliment 2 or more stacks in a single dimensional array ?
Write a program to implement queue.
Can you pass an entire structure to functions?
I heard that you have to include stdio.h before calling printf. Why?
what is an inline function?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
How to write a code for reverse of string without using string functions?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
Why do we use return in c?
What would be an example of a structure analogous to structure c?