output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
2 4316Post New Elysium C Interview Questions
What do you use spark for?
Are there additional resources / individuals that you can recommend for my paper?
How do cultural differences impact the societal acceptance of AI?
What does the message "automatic aggregate intialization is an ansi feature" mean?
How would you ensure accountability in AI systems?
What is difference between structure and union?
Show the two pl/sql cursor exceptions.
Give key features of any NoSQL database?
What is the spring ioc container?
What is data export service and what is its scope?
Will automated testing tools make testing easier?
What is star-delta transformer?
> CREATE OR REPLACE FUNCTION FACTORIAL_1(factstr varchar2 ) 2 RETURN NUMBER AS 3 new_str VARCHAR2(4000) := factstr||'*' ; 4 fact number := 1 ; 5 BEGIN 6 7 WHILE new_str IS NOT NULL 8 LOOP 9 fact := fact * TO_NUMBER(SUBSTR(new_str,1,INSTR(new_str,'*')-1)); 10 new_str := substr( new_str,INSTR(new_str,'*')+1); 11 END LOOP; 12 13 RETURN fact; 14 15 END; explanation Above program?
What are the various steps involved in an analytics project?
Can we have more than one package statement in source file ?