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
write a program to print largest number of each row of a 2D array
i got 75% in all semester am i eligible for your company
How do I swap bytes?
What are the data types present in c?
What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }
Write a program using two-dimensional array that lists the odd numbers and even numbers separately in a 12 input values.
Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain
Explain why C language is procedural?
What oops means?
what is the program to display your name in any color?
How a string is stored in c?
write a program that will accept two integers and will implement division without using the division operator if the second value is an odd number and will implement multiplication without using multiplication operator if the second value is an even number.