How will you free the allocated memory ?

Home | Discussion Forum

How will you free the allocated memory ?

View More Related Question

2) Which of the following cannot be a structure member?

3) What is the output of this C code?

#include <stdio.h>
struct student
{
int no = 5;
char name[20];
};
void main()
{
struct student s;
s.no = 8;
printf("hello");
}

4) Can the below code be compiled successfully?

#include <stdio.h>
struct p {
int k;
char c;
float f;
};
int main()
{
struct p x = {.c = 97, .f = 3, .k = 1};
printf("%f\n", x.f);
}

5) What is the output of this C code?

#include <stdio.hgt;
void main()
{
struct student {
int no;
char name[20];
};
struct student s;
s.no = 8;
printf("%d", s.no);
}

UP Gk Online Test

taiyari24hour.com

Study 2 Online Says....
Kindly log in or signup.