C program to find all possible outcomes of a dice?
What is gets() function?
What is unary operator?
What is C language ?
What math functions are available for integers? For floating point?
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
What is the easiest sorting method to use?
why effort estimation is important?
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
What is ## preprocessor operator in c?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.