What are types of functions?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
What are static functions?
what is the difference between exit() and _exit() functions?
Is c object oriented?
Can you assign a different address to an array tag?
what is ANSI and ISO
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
Why void is used in c?
What is false about the following A compound statement is a.A set of simple statments b.Demarcated on either side by curly brackets c.Can be used in place of simple statement d.A C function is not a compound statement.
swap two integer variables without using a third temporary variable?
why do some people write if(0 == x) instead of if(x == 0)?