Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

what is int,char.....

+1 vote
asked Aug 19, 2019 by SasiKanthKanigolla

5 Answers

0 votes
answered Aug 20, 2019 by anonymous
int-integer type i.e.numbers

char-character i.e.it can be any character or a alphabet
0 votes
answered Aug 20, 2019 by SWengineer
These are two "basic" data types of the C language. "char" is an 8 bit, signed, number. Most often used to store a character such as 'a' or 'z'. int is a signed number, typically 32 bits wide.
0 votes
answered Aug 20, 2019 by Chirag Patel
Integer and character are both basically different datatypes used in C or C++ programming language.Characters can be any alphabet ,number, or even a blank space can be defined as a single character.group or characters may form a string . Integers are long integers , integers, short integers depending on the requirement of precision
0 votes
answered Aug 21, 2019 by bhoomi2000 (780 points)
both are  primary data types

int: stands for integer whereas, char: stands for character
0 votes
answered Aug 21, 2019 by anonymous
int,char are data types.They are used to declare variables according to our needs.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...