Skip to content
tejsumeru-logo

Tejsumeru

Thoughts Become Reality
  • Home
  • Tutorials
    • Java
    • C language
    • Python
      • SciPy
    • C++ Language
    • PHP
    • Data Structure
    • Kotlin
    • Go Lang
  • Interview Quetions
  • About Us
tejsumeru-logo

Tejsumeru

Thoughts Become Reality
  • Home
  • Tutorials
    • Java
    • C language
    • Python
      • SciPy
    • C++ Language
    • PHP
    • Data Structure
    • Kotlin
    • Go Lang
  • Interview Quetions
  • About Us

What is l-value?

  • tejsumeru.12@gmail.com tejsumeru.12@gmail.com
  • Interview Quetions

l-value or location value refers to an expression that can be used on left side of assignment operator. For example in expression “a = 3”, a is l-value and 3 is r-value. l-values are of two types: “nonmodifiable l-value” represent a l-value that can not… Read More »What is l-value?

What is difference between i++ and ++i?

  • tejsumeru.12@gmail.com tejsumeru.12@gmail.com
  • Interview Quetions

1) The expression ‘i++’ returns the old value and then increments i. The expression ++i increments the value and returns new value. 2) Precedence of postfix ++ is higher than that of prefix ++. 3) Associativity of postfix ++ is left to right and associativity… Read More »What is difference between i++ and ++i?

Describe Wild Pointers in C?

  • tejsumeru.12@gmail.com tejsumeru.12@gmail.com
  • Interview Quetions

Uninitialized pointers in the C code are known as Wild Pointers. These are a point to some arbitrary memory location and can cause bad program behavior or program crash.

What are main characteristics of C language?

  • tejsumeru.12@gmail.com tejsumeru.12@gmail.com
  • Interview Quetions

C is a procedural language. The main features of C language include low-level access to memory, simple set of keywords, and clean style. These features make it suitable for system programming like operating system or compiler development.

What is the difference between abs() and fabs() functions?

  • tejsumeru.12@gmail.com tejsumeru.12@gmail.com
  • Interview Quetions

Both functions are to retrieve absolute value. abs() is for integer values and fabs() is for floating type numbers. Prototype for abs() is under the library file < stdlib.h > and fabs() is under < math.h >.

Describe static function with its usage?

  • tejsumeru.12@gmail.com tejsumeru.12@gmail.com
  • Interview Quetions

A function, which has a function definition prefixed with a static keyword is defined as a static function. The static function should call within the same source code. In C, functions are global by default. The “static” keyword before a function name makes it static.… Read More »Describe static function with its usage?

What are local static variables? What is their use?

  • tejsumeru.12@gmail.com tejsumeru.12@gmail.com
  • Interview Quetions

A local static variable is a variable whose lifetime doesn’t end with a function call where it is declared. It extends for the lifetime of complete program. All calls to the function share the same copy of local static variables. Static variables can be used… Read More »What are local static variables? What is their use?

What are reserved words with a programming language?

  • tejsumeru.12@gmail.com tejsumeru.12@gmail.com
  • Interview Quetions

The words that are part of the slandered C language library are called reserved words. Those reserved words have special meaning and it is not possible to use them for any activity other than its intended functionality. Example void, return int.

What are the valid places for the keyword break to appear

  • tejsumeru.12@gmail.com tejsumeru.12@gmail.com
  • Interview Quetions

Break can appear only with in the looping control and switch statement. The purpose of the break is to bring the control out from the said blocks.

What is the process to create increment and decrement stamen in C?

  • tejsumeru.12@gmail.com tejsumeru.12@gmail.com
  • Interview Quetions

There are two possible methods to perform this task. 1) Use increment (++) and decrement (-) operator. Example When x=4, x++ returns 5 and x- returns 3. 2) Use conventional + or – sign. When x=4, use x+1 to get 5 and x-1 to get 3.

  • « Previous
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • Next »

Recent Post

  • Step-by-Step Guide to Installing and Configuring Java SpringBoot
  • Setting up SpringBoot for Java Development: Tips, Tricks, and Best Practices
  • Integrating ChatGPT API into Your Android App: A Guide to Building Cutting-Edge Chatbots
  • What is Android Jetpack Compose: An Introduction to Google’s UI Toolkit
  • Efficient Java Microservices with Quarkus: A Guide to Setting Up the Framework




Copyright © 2018 Tejsumeru