Computer Science, asked by karthikkumarn2272, 4 days ago

#include <stdio.h>
int main()
static int p = 4, q = 8, r;
if((p & q> r) > (p | q r))
{
printf("Computer science");
}
else
{
goto pick; //line 1
}
pick : printf ("Allow");. //Line 2
}​

Answers

Answered by poonamanil84
0

Explanation:

Sign In

Home

Saved Videos

Courses

Practice DS & Algo.

Algorithms

Analysis of Algorithms

Data Structures

Interview Corner

Languages

CS Subjects

GATE

Web Technologies

Software Designs

School Learning

Mathematics

Maths Notes (Class 8-12)

NCERT Solutions

RD Sharma Solutions

Physics Notes (Class 8-11)

ISRO CS

UGC NET CS

Student

Jobs

GBlog

Puzzles

What's New ?

Change Language

Related Articles

Table of Contents

Write an Article

Write an Interview Experience

C

C++

Java

Python

Machine Learning

Interview Preparation

Practice @Geeksforgeeks

Algorithms

Data Structures

Programming Languages

Web Technologies

Tutorial Library

Computer Science Subjects

GATE 2021

UGC NET / ISRO

QUIZ Section

Puzzles

GeeksforGeeks Initiatives

C Loops & Control Structure

Last Updated : 22 Sep, 2021

1

2

3

4

5

Question 1

#include <stdio.h>

int main()

{

int i = 1024;

for (; i; i >>= 1)

printf("GeeksQuiz");

return 0;

}

Similar questions