Write a program to recognizing Idenifier Or Constant in C language
Below is sample input and output
/* Output:
enter string
sum 10
sum is Identifier
10 is Constant */
Solution
#include int main() { int number; // printf() dislpays the formatted output
printf("Enter an integer: "); // scanf() reads the formatted input and stores them
scanf("%d", &number); // printf() displays the formatted output printf("You entered:
%d", number); return 0; }

More Related Content

PDF
Between 2000 and 2002, then again from 2008 to 2010, access measures.pdf
PDF
Below is a diagram of the coding strand of DNA showing a gene please .pdf
PDF
A patient has a tidal volume of 0.50 L, a frequency of breathing or r.pdf
PDF
Why having a lipid rich cell wall make a bacteria harder to stain.pdf
PDF
Which of the following statements about leasing is falseALease fina.pdf
PDF
using the single linked list code written in the class or in the lab,.pdf
PDF
A database management system is also referred to as a database. True.pdf
PDF
An envolope contains three cards A black card that is black on both.pdf
Between 2000 and 2002, then again from 2008 to 2010, access measures.pdf
Below is a diagram of the coding strand of DNA showing a gene please .pdf
A patient has a tidal volume of 0.50 L, a frequency of breathing or r.pdf
Why having a lipid rich cell wall make a bacteria harder to stain.pdf
Which of the following statements about leasing is falseALease fina.pdf
using the single linked list code written in the class or in the lab,.pdf
A database management system is also referred to as a database. True.pdf
An envolope contains three cards A black card that is black on both.pdf

More from RBMADU (20)

PDF
There was a mass extinction of plants and animals at the end of the P.pdf
PDF
The size P of a certain insect population at time t (in days) obeys t.pdf
PDF
The fundamental theory of electromagnetic field is based on Maxwell.pdf
PDF
Part I – Antibiotics and the Human Microbiome Amelia and her family .pdf
PDF
Recall the Squeeze TheoremSuppose that for all n, xn yn zn. If .pdf
PDF
Since somathesthetic sensation from each side of the body projects t.pdf
PDF
Say whether each of the following statements is true (“T”) or false .pdf
PDF
Research and identify three IT-related Risk Management Plans and lis.pdf
PDF
please help me with two partI Bold it out as wrong part which in t.pdf
PDF
Matching. Choose the most appropriate answer from the right. 1. Null .pdf
PDF
Numerous diseases are caused by viruses and bacteria (etc. Hepatitis.pdf
PDF
Network peering is a method to save ISP’s network bandwidth and reso.pdf
PDF
Most alleles of the Drosophila cut (ct) gene are stable. For example.pdf
PDF
Know what make groups make up the Eukarya and describe some of th.pdf
PDF
I need help understanding epistatic gene Gene D Gene C Epistasis ana.pdf
PDF
I have to revise my exam. I have to explain why my answers where wro.pdf
PDF
Human blood cells, early embryous of the african clawed frog, sea ur.pdf
PDF
How does frequency hopping affect security precautions, if it all..pdf
PDF
Given that the random variable X has the following cumulative distrib.pdf
PDF
Driscoll Industries recognized the annual cost of depreciation on its.pdf
There was a mass extinction of plants and animals at the end of the P.pdf
The size P of a certain insect population at time t (in days) obeys t.pdf
The fundamental theory of electromagnetic field is based on Maxwell.pdf
Part I – Antibiotics and the Human Microbiome Amelia and her family .pdf
Recall the Squeeze TheoremSuppose that for all n, xn yn zn. If .pdf
Since somathesthetic sensation from each side of the body projects t.pdf
Say whether each of the following statements is true (“T”) or false .pdf
Research and identify three IT-related Risk Management Plans and lis.pdf
please help me with two partI Bold it out as wrong part which in t.pdf
Matching. Choose the most appropriate answer from the right. 1. Null .pdf
Numerous diseases are caused by viruses and bacteria (etc. Hepatitis.pdf
Network peering is a method to save ISP’s network bandwidth and reso.pdf
Most alleles of the Drosophila cut (ct) gene are stable. For example.pdf
Know what make groups make up the Eukarya and describe some of th.pdf
I need help understanding epistatic gene Gene D Gene C Epistasis ana.pdf
I have to revise my exam. I have to explain why my answers where wro.pdf
Human blood cells, early embryous of the african clawed frog, sea ur.pdf
How does frequency hopping affect security precautions, if it all..pdf
Given that the random variable X has the following cumulative distrib.pdf
Driscoll Industries recognized the annual cost of depreciation on its.pdf

Recently uploaded (20)

PDF
International_Financial_Reporting_Standa.pdf
PDF
Empowerment Technology for Senior High School Guide
PDF
1.3 FINAL REVISED K-10 PE and Health CG 2023 Grades 4-10 (1).pdf
PPTX
Virtual and Augmented Reality in Current Scenario
PPTX
What’s under the hood: Parsing standardized learning content for AI
PDF
semiconductor packaging in vlsi design fab
PDF
FOISHS ANNUAL IMPLEMENTATION PLAN 2025.pdf
PDF
Hazard Identification & Risk Assessment .pdf
PDF
LIFE & LIVING TRILOGY - PART - (2) THE PURPOSE OF LIFE.pdf
PDF
Race Reva University – Shaping Future Leaders in Artificial Intelligence
PDF
BP 704 T. NOVEL DRUG DELIVERY SYSTEMS (UNIT 2).pdf
PPTX
Computer Architecture Input Output Memory.pptx
PDF
MICROENCAPSULATION_NDDS_BPHARMACY__SEM VII_PCI .pdf
PPTX
Unit 4 Computer Architecture Multicore Processor.pptx
PDF
Vision Prelims GS PYQ Analysis 2011-2022 www.upscpdf.com.pdf
PDF
Complications of Minimal Access-Surgery.pdf
PPTX
Share_Module_2_Power_conflict_and_negotiation.pptx
PPTX
A powerpoint presentation on the Revised K-10 Science Shaping Paper
PDF
English Textual Question & Ans (12th Class).pdf
PPTX
Module on health assessment of CHN. pptx
International_Financial_Reporting_Standa.pdf
Empowerment Technology for Senior High School Guide
1.3 FINAL REVISED K-10 PE and Health CG 2023 Grades 4-10 (1).pdf
Virtual and Augmented Reality in Current Scenario
What’s under the hood: Parsing standardized learning content for AI
semiconductor packaging in vlsi design fab
FOISHS ANNUAL IMPLEMENTATION PLAN 2025.pdf
Hazard Identification & Risk Assessment .pdf
LIFE & LIVING TRILOGY - PART - (2) THE PURPOSE OF LIFE.pdf
Race Reva University – Shaping Future Leaders in Artificial Intelligence
BP 704 T. NOVEL DRUG DELIVERY SYSTEMS (UNIT 2).pdf
Computer Architecture Input Output Memory.pptx
MICROENCAPSULATION_NDDS_BPHARMACY__SEM VII_PCI .pdf
Unit 4 Computer Architecture Multicore Processor.pptx
Vision Prelims GS PYQ Analysis 2011-2022 www.upscpdf.com.pdf
Complications of Minimal Access-Surgery.pdf
Share_Module_2_Power_conflict_and_negotiation.pptx
A powerpoint presentation on the Revised K-10 Science Shaping Paper
English Textual Question & Ans (12th Class).pdf
Module on health assessment of CHN. pptx

Write a program to recognizing Idenifier Or Constant in C language.pdf

  • 1. Write a program to recognizing Idenifier Or Constant in C language Below is sample input and output /* Output: enter string sum 10 sum is Identifier 10 is Constant */ Solution #include int main() { int number; // printf() dislpays the formatted output printf("Enter an integer: "); // scanf() reads the formatted input and stores them scanf("%d", &number); // printf() displays the formatted output printf("You entered: %d", number); return 0; }