Why are algorithms important in c program?
No Answer is Posted For this Question
Be the First to Post Answer
Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 1. Print only the alphabets . If in upper case print in lower case vice versa.
Is it possible to run a c program without using main?If yes HOW??
Explain what are multibyte characters?
what is diognisis?
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); }
What is the difference between malloc calloc and realloc in c?
Where static variables are stored in c?
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,
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }
find a number whether it is even or odd without using any control structures and relational operators?
22 Answers Microsoft, Shashank Private Limited,
How many bytes are occupied by near, far and huge pointers (dos)?
WAP – represent a char in binary format