C Coding
Object & Classes
What is class in programming ? In programming, a class is a blueprint or a template that defines the structure and behavior of objects. It … Read more
C Programming Variables MCQ
Q1. Find the output of the code ? a) 5b) 2c) 7d) Compilation error Q2. Find the output of the code ? a) 9, 10b) … Read more
C Character input
Program to take character as input in C Programming. Explanation:
C String Input
Program to take string as input in c programming. Explanation:
Difference between static and non static methods in Java
Feature Static Method Non-Static Method Access Accessed using the class name directly or through an object reference Accessed only through an object reference Memory No … Read more
What is identifier expected error
The “identifier expected” error in programming typically occurs when the compiler or interpreter encounters a code statement where it expects to find an identifier (a … Read more
Program to prints the numbers from 1 to 10.
Write a program that prints the numbers from 1 to 10. Program in C Explanation: Output: Program in Java Explanation:
Program to convert string to uppercase or lowercase
Write a program that takes a string as input and convert it to uppercase or lowercase. Program in C Explanation: Output: Program in Java Explanation:
Program to find the length of the string
Write a program that takes a string as input and find the length of the string. Program in C Explanation: Output: Program in Java Explanation: