Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?
1 8099If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?
6 9814f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
7 10780f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
5 8144helllo sir give me some information of the basic information the c as printf ,scanf , %d ,%f and why is the main use of these.
3 7914helllo sir , what is the main use of the pointer ,array ,and the structure with the example of a programe
2 6461
What are linked lists in c?
What is the difference between c &c++?
Is there anything like an ifdef for typedefs?
How does sizeof know array size?
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
how can use subset in c program and give more example
How can I handle floating-point exceptions gracefully?
How can I split up a string into whitespace-separated fields?
Why is #define used?
I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.
Explain low-order bytes.
What are integer variable, floating-point variable and character variable?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
What’s the special use of UNIONS?