How will you allocate memory to double a pointer?
Answer / pavan135
main()
{
char *pch; **ppch;
pch = malloc(100);
if(pch == NULL)
return -1;
ppch = &pch;
}
| Is This Answer Correct ? | 2 Yes | 0 No |
What is gets() function?
Is that possible to store 32768 in an int data type variable?
differnce between do and do while
Why main is not a keyword in c?
Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
how can i calculate mean,median,mode by using c program
Is c procedural or functional?
Convert the following expression to postfix and prefix (A+B) * (D-C)
can v write main() { main(); } Is it true?
Explain data types & how many data types supported by c?
i=20,k=0; for(j=1;j<i;j=1+4*(i/j)) { k+=j<10?4:3; } printf("%d", k);
what is the difference between const volatile int i & volatile const int j;