what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
No Answer is Posted For this Question
Be the First to Post Answer
how to calculate the time complexity of a given algorithm? pls give exaples..mainly for the coplexities such as O(log n),O(n log n)...
What is graph in c?
Explain main function in c?
what is c programing
do u print this format '(((())))'. This brackets is based on user input like 4 or 5 or 6,without using any loop's?
how to find anagram without using string functions using only loops in c programming
What is the correct declaration of main?
What is a spanning Tree?
What is c basic?
What is a nested formula?
10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above