- 
	
	
Kaavya started the topic C Programming Data Types. new line code typed wrong in the forum C Programming 2 years, 5 months ago
The code to type the text in a new line is wrong. Instead of n there is just n as shown below.
#include <stdio.h>
#include <limits.h>
int main()
{
int a=57;
char b = ‘H’;
float c = 57.57;
double d = 123.456789;
printf(“Hey am an integer and my value is:%d n”,a);
printf(“Hey am a character and my value is:%c n”,b);
printf(“Hey…[Read more] - 
	
	
Kaavya wrote a new item 2 years, 5 months ago
How do you add footnotes and endnotes to a document?
 - 
	
	
Kaavya wrote a new item 2 years, 5 months ago
) What is the shortcut keys for creating hyperlink
 - 
	
	
Kaavya wrote a new item 2 years, 5 months ago
How you can insert video in Microsoft Word?
 - 
	
	
Kaavya wrote a new item 2 years, 5 months ago
What are copy constructors in C++?
 - 
	
	
Kaavya wrote a new item 2 years, 5 months ago
What is rule of 5 in C++?
 - 
	
	
Kaavya wrote a new item 2 years, 5 months ago
What are the big 3 of C++?
 - 
	
	
Kaavya wrote a new item 2 years, 5 months ago
What are the types of errors in C?
 - 
	
	
Kaavya wrote a new item 2 years, 5 months ago
what is comment in microsoft excel?
 - 
	
	
Kaavya started the topic Structure in C in the forum C Programming 2 years, 5 months ago
The structure in C is a user-defined data type that can be used to group items of possibly different types into a single type. The struct keyword is used to define the structure in the C programming language. The items in the structure are called its member and they can be of any valid data type.We can declare a variable for the structure so that…[Read more]
 - 
	
	
Kaavya started the topic Pointers in C in the forum C Programming 2 years, 5 months ago
Pointers are one of the core components of the C programming language. A pointer is a variable. It stores the memory address of other variables, functions, or even other pointers as its value. A pointer can be used to store the memory address of . The use of pointers allows low-level memory access, dynamic memory allocation, and many other…[Read more]
 - 
	
	
Kaavya started the topic Operators in C in the forum C Programming 2 years, 5 months ago
An operator is a symbol that operates on a value or a variable. For example: / is an operator to perform division .C has many kinds of operators to perform various operations. They are as Arithmetic operators, Assignment operators, Comparison operators, Logical operators and Bitwise operators.
 - 
	
	
Kaavya wrote a new item 2 years, 5 months ago
difference between keyword and an identifier
 - 
	
	
Kaavya wrote a new item 2 years, 5 months ago
What are the main features of C programming
 
