What are structural members?
No Answer is Posted For this Question
Be the First to Post Answer
The code is::::: if(condition) Printf("Hello"); Else Printf("World"); What will be the condition in if in such a way that both Hello and world are printed in a single attempt?????? Single Attempt in the sense... It must first print "Hello" and it Must go to else part and print "World"..... No loops, Recursion are allowed........................
14 Answers HOV Services, IBM, Potty,
Tell me can the size of an array be declared at runtime?
void main() { int a=1; while(a++<=1) while(a++<=2); }
What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is wrong with this code?
Illustrate it summing the series 2+4+6+......to n terms using (i) while loop (ii) do-while loop
which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;
What is the use of #include in c?
Write a program to generate the first n terms in the series --- 2,3,5,7,11,...,17
How we can set and clear bit in a byte using macro function?
what are the files which are automatically opened when a c file is executed?