Answer Posted / dfda
because iam so smart.
| Is This Answer Correct ? | 2 Yes | 12 No |
Post New Answer View All Answers
How does #define work?
What are data structures in c and how to use them?
Can we access the array using a pointer in c language?
Is return a keyword in c?
Explain the use of bit fieild.
Explain what are compound statements?
Give differences between - new and malloc() , delete and free() ?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
What is volatile, register definition in C
What is a char in c?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
How are variables declared in c?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
What are register variables in c?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration