Can we access the array using a pointer in c language?
No Answer is Posted For this Question
Be the First to Post Answer
Why c is called a mid level programming language?
What is a void pointer in c?
how to create c progarm without void main()?
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175
which one of follwoing will read a character from keyboard and store in c a)c=getc() b)c=getchar() c)c=getchar(stdin) d)getc(&c) e)none
Write a code on reverse string and its complexity.
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
Can you return null in c?
How can we allocate array or structure bigger than 64kb?
What is the difference between malloc() and calloc()?
What is extern storage class in c?
Place the #include statement must be written in the program?