What is sizeof c?
No Answer is Posted For this Question
Be the First to Post Answer
what is c?
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
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
Explain how can you restore a redirected standard stream?
WHAT IS HEADER?
write a c program to convert fahrenheit to celsius?
Explain what is the difference between far and near ?
Does sprintf put null character?
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
what does ‘#include’ mean?
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?