what is the different bitween abap and abap-hr?
No Answer is Posted For this Question
Be the First to Post Answer
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Explain spaghetti programming?
what does the following code do? fn(int n,int p,int r) { static int a=p; switch(n){ case 4:a+=a*r; case 3:a+=a*r; case 2:a+=a*r; case 1:a+=a*r; } } a.computes simple interest for one year b.computes amount on compound interest for 1 to 4 years c.computes simple interest for four year d.computes compound interst for 1 year
Write a program to compute the following 1!+2!+...n!
Tell me a C program to display the following Output? 1 1 1 1 1 2 2 2 2 3 3 3 4 4 5
What is a pointer value and address in c?
wat is the difference between array and pointer?
What is a macro in c preprocessor?
How can you convert integers to binary or hexadecimal?
where are auto variables stored? What are the characteristics of an auto variable?
write c program without semicolon
11 Answers MindTech, TCS, Wipro,
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?