Explain main function in c?
No Answer is Posted For this Question
Be the First to Post Answer
how to swap 4 number without using temporary number?
What is the process of writing the null pointer?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
Heyyy All, Just a challenge . A C program with if Else if(){ /// insert sumthing print ("in if") // insert sumting } else { ///// insert sumthing print ("in else"); //// insert sumthing } can anyone modify it so that program prints. if and else both
write a program to print calender using for loop.
Are local variables initialized to zero by default in c?
Sir i need notes for structure,functions,pointers in c language can you help me please
Can i use “int” data type to store the value 32768? Why?
A program to allow an input operand and operator from the operator and read on the display and output operand.
write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?
Explain what are the advantages and disadvantages of a heap?
What is the output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }