In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
No Answer is Posted For this Question
Be the First to Post Answer
Explain how do you generate random numbers in c?
helllo sir , what is the main use of the pointer ,array ,and the structure with the example of a programe
Explain modulus operator. What are the restrictions of a modulus operator?
a C prog to swap 2 no.s without using variables just an array?
Can 'this' pointer by used in the constructor?
How can you tell whether a program was compiled using c versus c++?
Program to trim a given character from a string.
main() { printf(5+"Vidyarthi Computers"); }
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
Why is sizeof () an operator and not a function?
Explain 'bit masking'?
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output