Working With Structures - Hindi
- subtitles off
- captions off
- English
- Hindi
- Questions posted on Forums
- C and Cpp Tutorials - Hindi
-
Regarding Assignment
I don't understand what is wrong with the following code. Please help.#include <stdio.h>#include <string.h>struct employee{ char name[100]; char address[100]; char desgn[100]; float salary;};int main(){ struct employee details; printf("Please enter the full name of the employee : "); scanf("%[^\n]s", details.name); printf("\n"); printf("Please enter the address of the employee : "); scanf("%[^\n]s", details.address); printf("\n"); printf("Please enter the designation of the employee : "); scanf("%[^\n]s", details.desgn); printf("\n"); printf("Please enter the salary of the employee : "); scanf("%f", details.salary); printf("\n"); printf("\n"); printf("PAY SLIP"); printf("This is to certify that Mr/Ms. %s ,who lives at %s, works in our company as the %s. He receives %f only, as salary per month.", details.name, details.address, details.desgn, details.salary); return 0;}
05-06M 40-50S bsscharan
Answer last updated on: Aug. 19, 2024, 4:19 p.m.
-
Doubt in the program
I have two doubts in the program.1.Is there any reason to write the int main() function after a few lines in this particular program, but to write the same immediately after the include <stdio.h> line in most other programs?2. Why is there a semicolon after the curly bracket before int main() function?
01-02M 50-60S brtbala@gmail.com
Answer last updated on: Oct. 22, 2020, 3:24 a.m.
-
1First C Program
-
2First Cpp Program
-
3Tokens
-
4Functions
-
5Scope Of Variables
-
6If And Else If statement
-
7Nested If And Switch Statement
-
8Increment And Decrement Operators
-
9Arithmetic Operators
-
10Relational Operators
-
11Logical Operators
-
12Loops
-
13Arrays
-
14Working With 2D Arrays
-
15Strings
-
16String Library Functions
-
Working With Structures
-
18Understanding Pointers
-
19Function Call
-
20File Handling In C
Questions posted on ST Forums:
2463 visits
Outline:
स्ट्रक्चर्स के साथ कार्य -परिचय -स्ट्रक्चर्स का सिंटैक्स -Declaration और initialization - स्ट्रक्चर वेरिएबल का Declaration -स्ट्रक्चर वेरिएबल ऐक्सेस करना।
Width: | 848 | Height: | 720 |
---|---|---|---|
Duration: | 00:06:33 | Size: | 2.7 MB |
Show video info