Explain with the aid of an example why arrays of structures
don’t provide an efficient representation when it comes to
adding and deleting records internal to the array.
No Answer is Posted For this Question
Be the First to Post Answer
What are preprocessor directives?
How can I list all of the predefined identifiers?
What is int main () in c?
what is difference between array,strutter,union and pointers
3 Answers CTS, Lovely Professional University, Mannar Company,
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
what is the value of 'i'? i=strlen("Blue")+strlen("People")/strlen("Red")-strlen("green")
7 Answers Cadence, JNTU, Zen Technologies,
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
Write a program to print factorial of given number using recursion?
whenever a question is posted in a particular category in allinterview.com, Is there any facility to receive an indication mail. For eg: I need to receive an indication email, whenever a question is posted under the category “C Langauage”.
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
What are the __date__ and __time__ preprocessor commands?
Why is structure padding done in c?