Hai what is the different types of versions and their
differences
No Answer is Posted For this Question
Be the First to Post Answer
write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?
Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
Is an array parameter is always "by reference" ?
What is break statement?
main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }
Can you define which header file to include at compile time?
question-how to run a c programme.
What is difference between structure and union?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
What is your stream meaning?
I have a varargs function which accepts a float parameter?