Is anything faster than c?
No Answer is Posted For this Question
Be the First to Post Answer
fn f(x) { if(x<=0) return; else f(x-1)+x; }
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
How do I swap bytes?
Where static variables are stored in c?
How the C program can be compiled?
When the macros gets expanded?
what is a non volatile key word in c language?
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
What are examples of structures?
What is macro?
What does char * * argv mean in c?
Can true be a variable name in c?