What is the size of structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
What is an auto keyword in c?
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
Who had beaten up hooligan "CHAKULI" in his early college days?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Describe the steps to insert data into a singly linked list.
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
what is the output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(“ %d\n”,sum); } what is the difference between a=10 and a=010??
What is declaration and definition in c?
What is difference between the following 2 lines…. int temp = (int)(0x00); int temp = (0x00int);
main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }