main()
{
int x=5;
clrscr();
for(;x==0;x--) {
printf("x=%d\n”", x--);
}
}
a. 4, 3, 2, 1, 0
b. 1, 2, 3, 4, 5
c. 0, 1, 2, 3, 4
d. none of the above
Answers were Sorted based on User's Feedback
plz send me all data structure related programs
can you use proc sql to manpulate a data set or would u prefer to use proc report ? if so why ? make up an example and explain in detail
int main() { int x=10; printf("x=%d, count of earlier print=%d", x,printf("x=%d, y=%d",x,--x)); getch(); } ================================================== returns error>> ld returned 1 exit status =================================================== Does it have something to do with printf() inside another printf().
What is the difference between proc means and proc tabulate ? explain with a simple example when you have to use means or tabulate?
char *someFun() { char *temp = “string constant"; return temp; } int main() { puts(someFun()); }
#include <stdio.h> #define a 10 main() { #define a 50 printf("%d",a); }
What is your nationality?
main() { int i; printf("%d",scanf("%d",&i)); // value 10 is given as input here }
How will u find whether a linked list has a loop or not?
programming in c lanugaue programm will errror error with two header file one as stdio.h and other one is conio.h
void main() { int c; c=printf("Hello world"); printf("\n%d",c); }
main() { char *p; p="Hello"; printf("%c\n",*&*p); }