What is double pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
What is c mainly used for?
Which are low level languages?
for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be printed?????????
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?
What is union and structure in c?
What is a MAC Address?
What is a program flowchart?
What is use of bit field?
wt is d full form of c
what is the defrenece between structure and union
What is the difference between array and pointer in c?