State two uses of pointers in C?
No Answer is Posted For this Question
Be the First to Post Answer
Is there anything like an ifdef for typedefs?
where do we use structure pointer?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
what is linkage error when it occurs in c program
I heard that you have to include stdio.h before calling printf. Why?
What's wrong with "char *p; *p = malloc(10);"?
Do string constants represent numerical values?
can anyone proide me reading material on svit00ef27@yahoo.com please thanx in advance
Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.
what is the basis for selection of arrays or pointers as data structure in a program
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output