Connect with us

C Language

Computer

Programming

_____ in C language is also known as record.

Correct Answer is: Structure

Explanation: In C programming, a struct, or structure, is a collection of variables of different data types under a single name. The struct keyword is used to define a structure.
To access the member variables of a structure, you use the dot operator.

Recently updated  

on

Q.#include
void main(void){
int shifty;
shifty=0570;
shifty=shifty>>4;
shifty=shifty<<6;
printf(“The value of shifty is %o \n”,shifty);
}

Q.In the context of while loop and Do while loop in C / C++, which of the following is not true

Q.Which language is called as the second generation language ?

Q.The statement i++; is equivalent to:

Q.What is output of given c program:
main(){
int i = 8;
while(i=8){
printf(“Welcome on Govtexamresults”);
i++;
}
}

Q.Which statement is correct for get and put functions in c

Advertisement
Advertisement