Is int a keyword 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
dibakar & vekatesh..uttejana here..abt ur reply for in place reversal of linked list..wats p stands for there?
What is the scope of an external variable in c?
Which built-in library function can be used to match a patter from the string?
What is Memory leakage ?
write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word
write a program fibonacci series and palindrome program in c
0 Answers Aditi Placement Service,
What do you mean by a local block?
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
is c language is a object oreinted language?
difference between spiral and waterfall model