What is sizeof return in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the general form of a C program?
which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?
What is function pointer and where we will use it
Write a program to print all permutations of a given string.
what is mallloc()?how it works?
I heard that you have to include stdio.h before calling printf. Why?
Why static is used in c?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
How do we make a global variable accessible across files? Explain the extern keyword?
Why can't we initialise member variable of a strucutre
how can we Declare a variable in c without defining it.