What is array in C
No Answer is Posted For this Question
Be the First to Post Answer
What are the types of c language?
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]
What is the use of structure padding in c?
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
What is #error and use of it?
what will the following program do? void main() { int i; char a[]="String"; char *p="New Sring"; char *Temp; Temp=a; a=malloc(strlen(p) + 1); strcpy(a,p); //Line no:9// p = malloc(strlen(Temp) + 1); strcpy(p,Temp); printf("(%s, %s)",a,p); free(p); free(a); } //Line no 15// a) Swap contents of p & a and print:(New string, string) b) Generate compilation error in line number 8 c) Generate compilation error in line number 5 d) Generate compilation error in line number 7 e) Generate compilation error in line number 1
Tell me with an example the self-referential structure?
i want to asked a question about c program the question is: create a c program that displays all prime numbers less than 500? using looping statement
how logic is used
Can we add pointers together?
Which of these functions is safer to use : fgets(), gets()? Why?
What does 3 periods mean in texting?