int a=1,b=2,c=3;
printf("%d,%d",a,b,c);
What is the output?
Post New Answer View All Answers
What does calloc stand for?
What does a pointer variable always consist of?
What is merge sort in c?
What is chain pointer in c?
Is return a keyword in c?
What is difference between far and near pointers?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
write a c program to calculate sum of digits till it reduces to a single digit using recursion
What are the 4 types of organizational structures?
What is difference between Structure and Unions?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
number of times a digit is present in a number
Explain what is the benefit of using enum to declare a constant?
How to find a missed value, if you want to store 100 values in a 99 sized array?
What do you mean by dynamic memory allocation in c? What functions are used?