a=(1,2,3);
b=1,2,3;
c=1,(2,3);
d=(1,2),3;
what's the value of 'a','b','c','d'
Answer Posted / srsabariselvan3
a=3
b=1
c=1
d=2
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
With the help of using classes, write a program to add two numbers.
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
How is null defined in c?
Explain how can type-insensitive macros be created?
What are enumerated types?
What is the basic structure of c?
Describe the steps to insert data into a singly linked list.
What are qualifiers and modifiers c?
What is the benefit of using #define to declare a constant?
When would you use a pointer to a function?
find out largest elemant of diagonalmatrix
What is structure in c explain with example?
What are identifiers and keywords in c?
What is context in c?