Is it valid to address one element beyond the end of an array?
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between array and structure in c?
When should structures be passed by values or by references?
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }
What is a pointer and how it is initialized?
create an SINGLE LINKED LISTS and reverse the data in the lists completely
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
What are c preprocessors?
what is the use of getch() function in C program.. difference b/w getch() and getche()??
29 Answers HCL, IBM, Infosys, TCS, Wipro,
Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?
How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran
What does %p mean?