how to execute a program using if else condition and the
output should enter number and the number is odd only...
No Answer is Posted For this Question
Be the First to Post Answer
int array[]={1,2,3,4,5,6,7,8}; #define SIZE (sizeof(array)/sizeof(int)) main() { if(-1<=SIZE) printf("1"); else printf("2"); }
What is binary tree in c?
What is meant by int main ()?
Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above
3 Answers Accenture, Infosys, Wipro,
What functions are used in dynamic memory allocation in c?
wite a programme in c to linear search a data using flag and without using flags?
What is the general form of a C program?
Which of the following data structures is on average the fastest for retrieving data: 1) Binary Tree 2) Hash Table 3) Stack
When c language was developed?
What are the similarities between c and c++?
What is the difference between null pointer and the void pointer?