C Programming and Technical Category

Which of the following is the correct syntax for declaration of a structure?
Select one:
struct_name;
Struct struct_name;
struct
{
Struct_name;
}
struct struct_name;

Read Solution (Total 14)

C Other Question

C language code for scientific calculator What is sizeof(a)?
int *a[10];
int *(a)[10];
int **(a)[10];
int *a(int b,char ch);