What type of function is main ()?
No Answer is Posted For this Question
Be the First to Post Answer
What is a stream in c programming?
What is dangling pointer in c?
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
is c language is a object oreinted language?
How many types of operators are there in c?
4.A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
What does #pragma once mean?
What is meant by type casting?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What is a built-in function in C?
can we store values and addresses in the same array? explain
What is #include in c?