a program that can input number of records and can view it
again the record
Using which language Test cases are added in .ptu file of RTRT unit testing???
What's the best way of making my program efficient?
Write a program to find the number of times that a given word(i.e. a short string) occurs in a sentence (i.e. a long string!). Read data from standard input. The first line is a single word, which is followed by general text on the second line. Read both up to a newline character, and insert a terminating null before processing. Typical output should be: The word is "the". The sentence is "the cat sat on the mat". The word occurs 2 times.
Which header file is used for clrscr?
When is a null pointer used?
Why is it important to memset a variable, immediately after allocating memory to it ?
write a 'c' program to sum the number of integer values
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?
what is function pointer?
main() {char a[10]={1,2,3,4,5,6};int x; for(x=0;x<4;x++){ b[x]=x+'a';} printf("%s",b);}
write a statement to display all the elements array M(in reverse order? int M[8]={20,21,22,23,24,25,26,27};
CopyBits(x,p,n,y) copy n LSBs from y to x starting LSB at 'p'th position.