Why c is faster than c++?
No Answer is Posted For this Question
Be the First to Post Answer
program to find the ASCII value of a number
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
how to find that no is int or float?
4.weight conversion: Write a program that will read weight in pounds and convert it into grams.print both the original weight and the converted value.There are 454 grams in a pound.design and carry out a test plan for this program.
typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
What are header files? What are their uses?
to convert a string without using decrement operater and string functions
what is the function of void main()?
what is the use of #pragma pack, wer it is used?
find the sum of two matrices and WAP for it.
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.