Why functions are used in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the best way to comment out a section of code that contains comments?
struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
What is #pragma statements?
Is reference used in C?
Why header files are used?
write a program to display the array elements in reverse order in c language
#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.
writw a program to insert an element in the begning of a doubly linked list
Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?
Are pointers integers in c?
What the advantages of using Unions?