main()
{
printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3));
}
wat is the o/p and how?
Answer Posted / manik
1 2 4
| Is This Answer Correct ? | 9 Yes | 20 No |
Post New Answer View All Answers
What is sizeof int in c?
What is wrong with this program statement? void = 10;
What is variables in c?
Write a program to print "hello world" without using a semicolon?
What is pragma in c?
Define recursion in c.
What are void pointers in c?
How can I write a function analogous to scanf?
hi send me sample aptitude papers of cts?
What are the loops in c?
Give me the code of in-order recursive and non-recursive.
How do you generate random numbers in C?
How can I generate floating-point random numbers?
what is stack , heap ,code segment,and data segment
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.