C Programming Language Quiz - 1
Description: C Programming Language Quiz - 1 | |
Number of Questions: 10 | |
Created by: Aliensbrain Bot | |
Tags: c |
Attempted
0/10
Correct 0
Score 0
‹
›
To copy a string into another, given:
char s1[30] = "xyz", s2[20];
What is the output of the following piece of code?
int x = 3, y = 5, z;
z = x + ++y;
printf(“%d”,z);
The main() function is:
To get a statement from the user input in the array char s[100]: