Is r written in c?
No Answer is Posted For this Question
Be the First to Post Answer
Display names and numbers of employees who have 5 years or more experience and salary less than Rs.15000 using array of structures (name, number, experience and salary)
what are the various memory handling mechanisms in C ?
What is array of pointers to string?
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); }
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
C program to read the integer and calculate sum and average using single dimensional array
What is the value of c?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
plssssss help !!....using array.. turbo c.. create a program that will accept number of words to be consored. .a word must not exceed 10 characters long .the text to be entered will be no longer than 200 characters .there will be no 10 words example: enter number of words to be censor: 5 enter words to censor: windows office microsoft bill gates enter text to censor: bill gates founded microsoft and makes office and windows sample output: <consored> <censored> founded <censored> and makes <censored> and <censored>
How can I manipulate strings of multibyte characters?
Write a program to show the change in position of a cursor using c
where do we use volatile keyword?