The process of repeatedly running a set of computer instructions until some condition is specifed
a) condition
b) sequential condition
c) global
d) iteration
No Answer is Posted For this Question
Be the First to Post Answer
typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?
1,4,8,13,21,30,36,45,54,63,73,?,?.
10 Answers AMB, Franklin Templeton,
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
What are compound statements?
Can we access RAM? How? Whats the range of access? Similarly What are other hardware we can access?
explain how do you use macro?
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
Every time i run a c-code in editor, getting some runtime error and editor is disposing, even after reinstalling the software what may be the problem?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
what is difference between array of characters and string
What's the difference between calloc() and malloc()?