C Programming - Basics 001

C Programming - Basics 001

University

10 Qs

quiz-placeholder

Similar activities

c language quiz

c language quiz

University

9 Qs

Arrays in C (II yr 02.07.2020)

Arrays in C (II yr 02.07.2020)

University

10 Qs

Coding club Summit Online Quiz

Coding club Summit Online Quiz

University

15 Qs

Plot the Code

Plot the Code

University

10 Qs

C - Pointers

C - Pointers

University

10 Qs

C Program Array and strings

C Program Array and strings

University

10 Qs

Operators in C

Operators in C

University

12 Qs

Basics Of C Programming

Basics Of C Programming

University

10 Qs

C Programming - Basics 001

C Programming - Basics 001

Assessment

Quiz

Computers

University

Hard

Used 69+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Can we declare function inside structure of C Programming?

Yes

No

Depends on Compiler

Yes but run time error

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is storage class for variable A in below code?


void main()

{

int A;

A = 10;

printf("%d", A);

}

extern

register

auto

static

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is output of below program?

void main()

{

const int a = 10;

printf("%d",++a);

}

11

10

Compilation Error

0

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Library function pow() belongs to which header file?

mathio.h

math.h

square.h

stdio.h

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Libray function getch() belongs to which header file?

stdio.h

conio.h

stdlib.h

stdlibio.h

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the following is invalid header file in C?

mathio.h

math.h

string.h

ctype.h

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is output of below code?


void main()

{

char name[]="Cppbuz";

int len;

int size;

len = strlen(name);

size = size_of(name);

printf("%d,%d",len,size);

}

6,6

6,7

7,7

0,0

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?