What is echo in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
please give me some tips for the placement in the TCS.
what is the difference between malloc() and calloc() function?
What is an endless loop?
11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
Implement bit Array in C.
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
Tell me when is a void pointer used?
what is c?
what is a function pointer and how all to declare ,define and implement it ???
Can a pointer point to null?
Define a structure to store the record of library. The record must consist of at least following fields: Title, Author, Edition, Price, Publisher, and Category. -Define functions authorSearch ( ), TitleSearch ( ) and CategorySearch ( ) to search a book with respect to author, title and category. [There can be more than one book, written by one author, in one category]