Is main a keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is the general form of a c program?
plz answer.... write a program that reads line (using getline) e.g."345", converts each line to an integer using "atoi" and computes the average of all the numbers read. also compute the standard deviation.
What is the process to generate random numbers in c programming language?
c program to manipulate x=1!+2!+3!+...+n! using recursion
What is the difference between declaring a variable by constant keyword and #define ing that variable?
What are header files and explain what are its uses in c programming?
What is the right type to use for boolean values in c?
Is c still relevant?
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
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,
How we can insert comments in a c program?
what is a constant pointer in C