Why pointers are used in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how does free() know explain how much memory to release?
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }
What is calloc()?
What are different types of operators?
what is a void pointer?
How is null defined in c?
2. Counting in Lojban, an artificial language developed over the last fourty years, is easier than in most languages The numbers from zero to nine are: 0 no 1 pa 2 re 3 ci 4 vo 5 mk 6 xa 7 ze 8 bi 9 so Larger numbers are created by gluing the digit togather. For Examle 123 is pareci Write a program that reads in a lojban string(representing a no less than or equal to 1,000,000) and output it in numbers.
What is wrong with this code?
7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
Write a simple program to find the size of different basic data types in C.
What is the difference between pure virtual function and virtual function?