What are enumerated types?
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
why u join this call center?
why Language C is plateform dependent
int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d", i);
What are the different types of pointers?
What are the 4 types of programming language?
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
what is the use of call back function in c?tell me with example
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
Write a program to print a (*)pattern programming (A to Z) in capital in one programming ?
How can a string be converted to a number?
How can I implement sets or arrays of bits?