what is Array?
Answers were Sorted based on User's Feedback
Answer / lakshmi
it is a grouped item of consequitive memory elements with
similar type of values.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / lakshmi
Array is the group of consequitive elements with same type.
| Is This Answer Correct ? | 7 Yes | 2 No |
Answer / guest
collection of element in continuous memory location
| Is This Answer Correct ? | 1 Yes | 1 No |
how to write a program which adds two numbers without using semicolon in c
Write a program to find the smallest and largest element in a given array in c language
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We.....Are....Student “ Note: one .=1 Space Output: "We Are Student"
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
How pointers are declared?
Can the “if” function be used in comparing strings?
Write a program to reverse a linked list in c.
Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
What are the similarities between c and c++?
what are the different storage classes in c?
WRITE A C PROGRAM TO FIND SECOND BIGGEST VALUE FROM THE GIVEN VALUES
string reverse using recursion