Write a program that his output 1 12 123
No Answer is Posted For this Question
Be the First to Post Answer
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
What is the use of sizeof () 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,
What are the different flags in C? And how they are useful? And give example for each in different consequences?
write a program to convert a expression in polish notation (postfix) to inline (normal)
how would a 4*3 array A[4][3] stored in Row Major Order?
what is ram?
What is the best way to store flag values in a program?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
Differentiate between ordinary variable and pointer in c.
what is the difference between procedure oriented and object oriented progaming language
How can a number be converted to a string?