how many keywords are available in 'c' language
a) 32
b) 34
c) 45
d) 48
Answer Posted / riya
32
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why can’t constant values be used to define an array’s initial size?
What should malloc() do?
please give me some tips for the placement in the TCS.
What is main () in c?
Write a program to find the biggest number of three numbers in c?
Describe the order of precedence with regards to operators in C.
What is the purpose of realloc()?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
How can I implement a delay, or time a users response, with sub-second resolution?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
How many bytes is a struct in c?
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
Write a program for Overriding.
What are structures and unions? State differencves between them.
Explain how can I remove the trailing spaces from a string?