What is a node in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference b/w compiler and debugger?
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }
User define function contain thier own address or not.
If the static variable is declared as global, will it be same as extern?
What are loops in c?
What are the disadvantages of external storage 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
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
What is the sizeof () operator?
? ???Mirror Mirror on the wall????????
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.
What is difference between Structure and Unions?