Write the control statements in C language
No Answer is Posted For this Question
Be the First to Post Answer
How to develop software using "c" programming?
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }
Write down the program to sort the array.
What is struct node in c?
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
How can I run c program?
How can I make it pause before closing the program output window?
#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.
swapping of two numbers without using third variable using AND and OR operators
Is double link list a linear data structure? If Yes, Why?If No, Why?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>