int a=1,b=2,c=3;
printf("%d,%d",a,b,c);
What is the output?
Post New Answer View All Answers
Explain the use of bit fieild.
List the different types of c tokens?
Why ca not I do something like this?
What does the characters “r” and “w” mean when writing programs that will make use of files?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
What are the 4 types of programming language?
What are the data types present in c?
In c programming language, how many parameters can be passed to a function ?
pierrot's divisor program using c or c++ code
Is fortran still used today?
Why flag is used in c?
How do you search data in a data file using random access method?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What are multibyte characters?
What is the explanation for the dangling pointer in c?