-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.c
79 lines (57 loc) · 2.21 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*
Project 13
sprintf - The Use of
The sprintf() works just like printf() but instead of sending output to console it returns
the formatted string.
Description
The system asks you for name, designation and salary.
Then returns each strings using 1 sprintf function.
There is an option for get(acquire, obtain) the outuput other than gets() method:
scanf(): but this actually is more difficult, since we need to clear input buffer.
Reference:
https://stackoverflow.com/questions/7898215/how-to-clear-input-buffer-in-c/7898516#7898516
Syntax: int sprintf(char *str, // Array that stores the output
const char *control_string, // Parameter that format the output:
[ arg_1, arg_2, ... ]); // %d - data - integers - 5
// %f - floating points - 5
Included in <stdio.h> library. // %e - exponential - (scientific) - 2^2
// %g - Fixed decimal - 5.05
// %.2f - float - number of decimal - 5.12
*************************************
Output:
Enter your name: j3
Enter your designation: student
Enter your salary: 12
Welcome j3 !
Name: j3
Designation: student
Salary: 12
**************************************
Author: https://overiq.com/c-programming-101/the-sprintf-function-in-c/
Edited by j3
Date: Jun, 21/2020
*/
#include<stdio.h>
#include<string.h>
int main()
{
int c;
int sal;
char name[30], designation[30], info[60];
printf("Enter your name: ");
gets(name);
//scanf("%s", &name);
//while((c=getchar())!= '\n' && c!= EOF){}
printf("Enter your designation: ");
gets(designation);
//scanf("%s", &designation);
//while((c=getchar())!= '\n' && c!= EOF){}
printf("Enter your salary: ");
scanf("%d", &sal);
while((c=getchar())!= '\n' && c!= EOF){}
sprintf(info, "Welcome %s !\nName: %s \nDesignation: %s\nSalary: %d", name, name, designation, sal);
printf("\n%s", info);
//system("pause");
// signal to operating system program ran fine
return 0;
}