What is the difference between array and pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is the format specifier for printing a pointer value?
What is pointers in c?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
what is recursion in C
What is the difference between macros and inline functions?
What are the different types of endless loops?
While(1) { } when this loop get terminate is it a infinite loop?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
What the advantages of using Unions?
What are the characteristics of arrays in c?
What is a class?
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