C Programming - Basics 001

C Programming - Basics 001

University

10 Qs

quiz-placeholder

Similar activities

IPC144 SLG -- Week2

IPC144 SLG -- Week2

University

9 Qs

UNIT 3

UNIT 3

University

12 Qs

unit3 pointers

unit3 pointers

University

10 Qs

FIND THE KEY

FIND THE KEY

University

10 Qs

Operators in C

Operators in C

University

12 Qs

Quiz on Functions#1

Quiz on Functions#1

University

15 Qs

Structures and union

Structures and union

University

15 Qs

Expression in C Programming

Expression in 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?