When can you use a pointer with a function?
No Answer is Posted For this Question
Be the First to Post Answer
Hi Every one......... Please Any body give me the answer for my question. Is it possible to print the word "PRINT F", without using printf() statement in C-Language.
how can i include my own .h file EX:- alex.h like #include<alex.h>, rather than #include"alex.h"
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What is c language and why we use it?
what are the various memory handling mechanisms in C ?
Is c high or low level?
what is the difference between #include<> and #include”…”?
Example of friendly function in c++
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
What are the different types of errors?
design and implement a program that reads floating-points numbers in a sentinel-controlled loop until the user terminates the program by entering zero.your program should determinate and print the smallest,largest and average of the supplied numbers.
why we are using semicolon at the end of printh statment