Why is this loop always executing once?
No Answer is Posted For this Question
Be the First to Post Answer
What are register variables? What are the advantage of using register variables?
Can a pointer be static?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
Develop a program that computes the new price of an item. The program should receive a character variable colour and a double precision floating-point variable price from the user. Discount rate is determined based on the colour of the discount sticker, as shown in the following table. An error message should be printed if an invalid colour has been entered
Write a program which returns the first non repetitive character in the string?
Bit swapping
List some basic data types in c?
Average of a couple 10 years ago was 25. The average remains same after having a child and twins after 3 years. What is the present age of the first child
which of 'arrays' or 'pointers' are faster?
what does data structure mean?
#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.
What is the explanation for modular programming?