what are the advanced features of functions
a) function declaration and prototypes
b) calling functions by value or by reference
c) recursion
d) all the above
No Answer is Posted For this Question
Be the First to Post Answer
wap to print "hello world" without using the main function.
tell me the full form of c?
Explain Basic concepts of C language?
In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT
How do you write a program which produces its own source code as its output?
Where are some collections of useful code fragments and examples?
How Many Header Files in c?
What is queue in c?
Who is invented by 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!
biggest of two no's with out using if condition statement
What is structure of c program?