What are the different file extensions involved when programming in C?
No Answer is Posted For this Question
Be the First to Post Answer
How do you define structure?
How can type-insensitive macros be created?
Explain command-line arguments in C.
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
input may any number except 1,output will always 1.. conditions only one variable should be declare,don't use operators,expressions,array,structure
How can I make a program in c to print 'Hello' without using semicolon in the code?
9 Answers C DAC, Practical Viva Questions,
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
How can I list all of the predefined identifiers?
What is the purpose of realloc()?
plz answer....A program that takes 3 variables e.g a,b,c in as seperate parameters and rotates the values stored so that value goes a to b, b to c and c to a .
what is the difference between #include<stdio.h> and #include"stdio.h" ?
What is operator precedence?