C Programming - Const - Discussion
Discussion Forum : Const - Point Out Errors (Q.No. 3)
3.
Point out the error in the program.
#include<stdio.h>
#include<stdlib.h>
union employee
{
char name[15];
int age;
float salary;
};
const union employee e1;
int main()
{
strcpy(e1.name, "K");
printf("%s", e1.name);
e1.age=85;
printf("%d", e1.age);
printf("%f", e1.salary);
return 0;
}
Discussion:
11 comments Page 2 of 2.
Dhavaprathap said:
1 decade ago
For this problem , the first error what i have encountered is " Uninitialized constant Object " at the line
const union employee e1;
const union employee e1;
Post your comments here:
Quick links
Quantitative Aptitude
Verbal (English)
Reasoning
Programming
Interview
Placement Papers