How many header files are in c?
What is the difference between pure virtual function and virtual function?
What are formal parameters?
how to print 212 as Twohundreds twelve plz provide me ans soon
IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.
What does 1f stand for?
Is it valid to address one element beyond the end of an array?
What is the diffrent between while and do while statement ?
Why is void main used?
What is linear search?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
what is the difference between #include<stdio.h> and #include "stdio.h" ?