What is a pointer variable in c language?
No Answer is Posted For this Question
Be the First to Post Answer
What is dynamic memory allocation?
what is a constant pointer in C
how can I convert a string to a number?
Explain data types & how many data types supported by c?
What is the difference between array and structure in c?
How Many Header Files in c?
Difference between goto, long jmp() and setjmp()?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
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
In which language linux is written?
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50
In C programming, what command or code can be used to determine if a number of odd or even?