Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?
1 8012If "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 9598f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
7 10553f(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 7910helllo 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 7770helllo sir , what is the main use of the pointer ,array ,and the structure with the example of a programe
2 6364
Explain how do you list files in a directory?
Which header file is used for clrscr?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
Does sprintf put null character?
What are the types of pointers in c?
What is the use of a semicolon (;) at the end of every program statement?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
Is fortran faster than c?
Does c have function or method?
How can I copy just a portion of a string?
Is exit(status) truly equivalent to returning the same status from main?
Explain the difference between exit() and _exit() function?
how to create duplicate link list using C???
How can I recover the file name given an open stream or file descriptor?
Explain the difference between ++u and u++?