4)What would be the output?
main()
{
int num=425;
pf("%d",pf("%d",num));
}
a)Comp error
b)4425
c)4253
d)3435
e)none
Answer Posted / niranjan kumar niraj
e)none
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
please send me the code for multiplying sparse matrix using c
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.
Define recursion in c.
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
praagnovation
What is the time and space complexities of merge sort and when is it preferred over quick sort?
How can I find out if there are characters available for reading?
What does void main () mean?
What is c token?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
What is 1d array in c?
What are the 4 types of programming language?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What is c preprocessor mean?