What is the correct code to have following output in c using nested for loop?
No Answer is Posted For this Question
Be the First to Post Answer
What is meant by preprocessor in c?
What is the purpose of scanf() and printf() functions?
Give the Output : * * * * * * * * * *
What does void main return?
IS STRUCTURES CAN BE USED WITHIN AN ARRAY?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?
how to make a scientific calculater ?
biggest of two no's with out using if condition statement
plz answer....A program that takes 3 variables e.g a,b,c in as seperate parameters and rotates the values stored so that value goes a to b, b to c and c to a .
what will be the output of this program? #include<stdio.h> #define cube(x) x*x*x void main() { int i,j=5; i=cube(j+3); printf("i=%d",i); }
Is c is a middle level language?