Question
#include <stdio.h>
typedef struct student
{
char *a;
}stu;
void main()
{
stu s;
s.a = "hi";
printf("%s", s.a);
}s
a.
Compile time error
b.
Varies
c.
hi
d.
h
Posted under C Programming
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. What is the output of this C code?
Similar Questions
Discover Related MCQs
Q. Size of a union is determined by size of the
View solution
Q. Members of a union are accessed as________________
View solution
Q. Which of the following share a similarity in syntax?
1. Union, 2. Structure, 3. Arrays and 4. Pointers
View solution
Q. Which of the following data types are accepted while declaring bit-fields?
View solution
Q. Which of the following reduces the size of a structure?
View solution
Q. Which of the following is not allowed?
View solution
Q. Bit fields can only be declared as part of a structure.
View solution
Q. The following declarations in order are
short a : 17;
int long y : 33;
View solution
Q. Which of the following declarations are correct ?
1 : typedef long a;
extern int a c;
2 : typedef long a;
extern a int c;
3 : typedef long a;
extern a c;
View solution
Q. How will you free the allocated memory ?
View solution
Q. What is the similarity between a structure, union and enumeration?
View solution
Q. Which of the following statements correct about the below code?
maruti.engine.bolts=25;
View solution
Q. The expression a<<6 shifts all bits of a six places to the left. If a 0x6db7, then what is the value of a<<6?
View solution
Q. The declaration
union id{
char color[12];
int size;}shirt,Jeans;
denotes shirt and Jeans are variable of type id and
View solution
Q. Most appropriate sentence to describe unions is
View solution
Q. If initialization is a part of a structure, then storage class can be
View solution
Q. Which of the following comments about union are true?
View solution
Q. Which of the following comments about the usage of structure is true?
View solution
Q. Union differs from structure in the following way
View solution
Q. Members of a union are accessed as________________.
View solution
Suggested Topics
Are you eager to expand your knowledge beyond C Programming? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!