logo

CuriousTab

CuriousTab

Discussion


Home Interview Technology Comments

  • Question
  • Warning implicit declaration of function?


  • Correct Answer
  • Function: A Function is a block of statement which perform some operation Declaring the function before using the function in program is known as implicit declaration of the function For Example:: int bar(void); // function (forward) declaration int main(void) { bar(); // bar was declared, the compiler has all the info return foo(123); // foo not yet known; impl decl warning } // not previously declared function definition int foo(int a) { return a; } // previously declared function definition int bar() { return 321; } 

  • Tags: IT Trainer, Analyst

    Technology problems


    Search Results


    • 1. Is it possible to nest functions in javascript?
    • Discuss
    • 2. Which of the following best describes JavaScript?

    • Options
    • A. a scripting language precompiled in the browser.
    • B. an object-oriented scripting language
    • C. a low-level programming language.
    • D. a compiled scripting language.
    • Discuss
    • 3. Which is a reserved word in the java programming language?

    • Options
    • A. Variable
    • B. Identifier
    • C. Keyword
    • D. Main
    • Discuss
    • 4. How do you handle error condition while writing stored procedure or accessing stored procedure from java ?
    • Discuss
    • 5. What is the difference between creating String as new() and literal ?
    • Discuss
    • 6. How many constructors can a class have?

    • Options
    • A. 1
    • B. 2
    • C. 4
    • D. None of the above
    • Discuss
    • 7. What compilers apple using ?
    • Discuss
    • 8. What are the different layers of cloud computing?
    • Discuss
    • 9. How does cloud computing provides on-demand functionality?
    • Discuss
    • 10. What is the use of API?s in cloud services?
    • Discuss


    Comments

    There are no comments.

Enter a new Comment