Explain what is wrong in this statement?
No Answer is Posted For this Question
Be the First to Post Answer
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What is the difference between i++ and i+1 ?(in terms of memory)
what are the advantage of pointer variables? write a program to count the number of vowels and consonants in a given string
What is the use of typedef in structure in c?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
What is nested structure in c?
What is the difference between far and near in c?
what is the difference between exit() and _exit() functions?
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
Can variables be declared anywhere in c?
without using control structures and control structures find the max and min of given 2 nos