what is the structure pointer?
No Answer is Posted For this Question
Be the First to Post Answer
The difference between printf and fprintf is ?
Explain why can’t constant values be used to define an array’s initial size?
WAP that prints the number from 1 to 100. but for multiplies of three print "XXX" instead of the number and for the multiplies of five print "YYY" . for number which are multiplies of both three and five print "ZZZ"
What is NULL pointer?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
How many levels of pointers can you have?
How can I recover the file name given an open stream or file descriptor?
What is masking?
How reliable are floating-point comparisons?
What is Memory leakage ?
difference between memcpy and strcpy
How can I sort more data than will fit in memory?