a character variable can at a time store

a) 1 character

b) 8 characters

c) 254 characters

d) none of the above

Answers were Sorted based on User's Feedback



a character variable can at a time store a) 1 character b) 8 characters c) 254 characters ..

Answer / kovshika

b) 8characters

Is This Answer Correct ?    6 Yes 2 No

a character variable can at a time store a) 1 character b) 8 characters c) 254 characters ..

Answer / tanmoy bhandari

1 character

Is This Answer Correct ?    3 Yes 1 No

a character variable can at a time store a) 1 character b) 8 characters c) 254 characters ..

Answer / ashutosh kumar sahu

1

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

What are c preprocessors?

0 Answers  


What is the difference between scanf and fscanf?

0 Answers  


A set of N billiard balls are set on a one-dimensional table. The table is 1 meter long, set north-south with two pockets at either side. Each ball has zero width and there is no friction so it is moving with a fixed velocity of either northward or southward and bounces back in a perfect elastic collision from other balls it encounter on its way (or drop into one of the pockets). Your job is to keep track of the balls movements. Task Please write a program that gets the initial place, speed and direction of all the balls and gives the position of a specific ball after t seconds. Input The first line contains the number of scenarios. Each one of the other lines in the input contains a scenario: The first number, N, is the number of balls; followed by N pairs of numbers: the distance in centimeters from the south end of the table and the speed (positive speed meaning it moves northward); the last two numbers are the number i of the target ball you should track and the time T in seconds. Output The output is a single number for each line which is the place (distance in centimeters from the south end of the table) of the tracked ball after T seconds. Note: There is no new line character at the end of the result. Sample Input 5 1 50 1 1 1000 1 50 1 1 6 1 60 -2 1 6 2 10 1 95 -1 2 30 2 10 1 95 -1 2 60 Sample Output 100 56 48 65 70

0 Answers  


Find MAXIMUM of three distinct integers using a single C statement

0 Answers  


What does the characters “r” and “w” mean when writing programs that will make use of files?

0 Answers  






How important is structure in life?

0 Answers  


O,T,T,F,F,S,S,E,N,?,?,?,T,F,F,S,S,E,N

9 Answers   ADP,


we have to use realloc only after malloc or calloc ? or we can use initially with out depending on whether we are using malloc or calloc in our program ?

2 Answers  


Is it valid to address one element beyond the end of an array?

0 Answers  


can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?

2 Answers  


What are the differences between Structures and Arrays?

0 Answers   TCS,


Program to find larger of the two numbers without using if-else,while,for,switch

11 Answers   iNautix, Wipro,


Categories