What is infinite loop?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how do you print an address?
How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.
find the minimum of three values inputted by the user
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
How can you return multiple values from a function?
int a=2,b=3,c=4; printf("a=%d,b=%d\n",a,b,c); what is the o/p?
#ifdef TRUE int I=0; #endif main() { int j=0; printf("%d %d\n",i,j); }
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }
What does emoji p mean?
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
Explain about the constants which help in debugging?
Is sizeof a keyword in c?