Give basis knowledge of web designing ...
No Answer is Posted For this Question
Be the First to Post Answer
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
Explain the concept of "dangling pointers" in C.
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
How can I write a function analogous to scanf?
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
Reverse the part of the number which is present from position i to j. Print the new number.[without using the array] eg: num=789876 i=2 j=5 778986
write a program to display the array elements in reverse order in c language
Convert the following expression to postfix and prefix X $ Y Z - M + N + P / Q / (R + S)
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
What is the Purpose of 'extern' keyword in a function declaration?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none