Why is main function so important?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
What is the purpose of main() function?
What are the key features in c programming language?
When can you use a pointer with a function?
implement NAND gate logic in C code without using any bitwise operatior.
How can I find out the size of a file, prior to reading it in?
Study the Following Points: a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static 1. Which of the Following Statements are true w.r.t Bit- Fields A)a,b&c B)Only a & b C)Only c D)All
How to reverse a string using a recursive function, without swapping or using an extra memory?
31 Answers Cisco, Mind Tree, Motorola, Ophio, Sony, TCS, Wipro,
Do you know null pointer?
What are header files and explain what are its uses in c programming?
Where are some collections of useful code fragments and examples?
Write a C program to get the desired output. 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 . . . 1 n..............n 1 Note: n is a positive integer entered by the user.