How do I send escape sequences to control a terminal or other device?
No Answer is Posted For this Question
Be the First to Post Answer
What is meant by global static? why we have to use static variable instead of Global variable
Sir i want e-notes of C languge of BAlaguruswami book i.e scanned or pdf file of balaguruswamy book on c language.PLEASE SEND ME on my mail id ajit_kolhe@rediff.com
write a program to print largest number of each row of a 2D array
Why static is used in c?
What is the explanation for modular programming?
print out of string in this format; 1. "rajesh" 2. \n 3. %d
which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}
Write a program to exchange two variaables without temp
How do I create a directory? How do I remove a directory (and its contents)?
what is the role you expect in software industry?
please send me the code for multiplying sparse matrix using c
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory