Posts Tagged ‘C language’

  • Best computer course with job guarantee

    May 13, 18 • 1349 Views • Education, GeneralNo Comments

    Best computer course with job guarantee Say thank you to your computer or mobile device for bringing you to this site. The system is the main catalyst and that is why you are reading this blog. Computer technology will never go out-dated as we are living in

  • C++ and C Programming Language Training

    Apr 2, 14 • 6421 Views • Resources5 Comments

    C++ and C programming language has become a crucial tool in an era of Object Oriented programming that will result into the software development. C/C++ programming language has become the foundation for the modern Information Technology field and Computer

  • C Aptitude Questions and Answers with pdf

    Sep 1, 13 • 43067 Views • Resources41 Comments

    C language is the most common and general purpose programming language available and has the presence of its compilers in maximum operating systems and computer architectures. C language was initially developed at AT&T Bell Labs by Dennis Ritchie. It is

  • MACROS in C Questions and Answers

    Jan 16, 13 • 5573 Views • Resources4 Comments

    Question-1 What is a macro in C? Answer- Macros are essentially shorthand representations of arbitrary sections of the source code, which makes the source code succinct, while its (the macro template’s) expansion replaces each of its presence prior to

  • Functions in C Language

    Jan 11, 13 • 2984 Views • Resources • • 7 Comments

    Q 1. What is a static function ? Ans 1: A static function is a function whose scope is limited to the current source file. Scope refers to the visibility of a function or variable. Q 2. Is it possible to execute code even after the program exits the main()