c programs are converted into machine language with the help of
a) an interpreter
b) a compiler
c) an operatinf system
d) none of the above
Write a program to print distinct words in an input along with their count in input in decreasing order of their count
Can a variable be both static and volatile in c?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
void main() { int a=1; while(a++<=1) while(a++<=2); }
what is used instead of pointers in java than c?
What are the various topologies? Which one is the most secure?
main() { intj; while9j<=10) { printf("\n%d",j); j=j+1; } }
What is memmove?
Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.
/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }
Can two or more operators such as and be combined in a single line of program code?
what is the little endian and big endian?