a character variable can at a time store
a) 1 character
b) 8 characters
c) 254 characters
d) none of the above
Answer Posted / tanmoy bhandari
1 character
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What are lookup tables in c?
What is c++ used for today?
Is c is a middle level language?
What is the difference between Printf(..) and sprint(...) ?
Process by which one bit pattern in to another by bit wise operation is?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
Can the size of an array be declared at runtime?
What are the application of void data type in c?
Explain what is the advantage of a random access file?
How can I write functions that take a variable number of arguments?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
How do we open a binary file in Read/Write mode in C?
What is the use of a ‘ ’ character?