Write the control statements in C language
No Answer is Posted For this Question
Be the First to Post Answer
Write a program that receives as input a number omaadel-n-print, four digits.
a character variable can at a time store a) 1 character b) 8 characters c) 254 characters d) none of the above
What are the difference between a free-standing and a hosted environment?
What is the correct code to have following output in c using nested for loop?
Do you know the purpose of 'register' keyword?
n=7623 { temp=n/10; result=temp*10+ result; n=n/10 }
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
What is the difference b/w Structure & Union?
Q.11 Generate the following pattern using code in any language(c/c++/java) for n no. of rows 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1