can we declare a function in side the structure?
Answers were Sorted based on User's Feedback
how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram.
can u write a program in C, which does not use = (eqaul)or any arithmatic assignment(like -=,+=,*= etc) operator to swap to number?
Tell me what are bitwise shift operators?
prog for 1st five prime numbers in 2^x - 1
What is 'makefile' in C langauage? How it be useful? How to write a makefile to a particular program?
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
write a statement to display all the elements array M(in reverse order? int M[8]={20,21,22,23,24,25,26,27};
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
What is use of pointer?
What are the application of c?
what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }