Can we declare function inside main?
No Answer is Posted For this Question
Be the First to Post Answer
Why is a semicolon (;) put at the end of every program statement?
what is diffrence between string and character array?
What is the difference between NULL and NUL?
Explain how can I convert a string to a number?
hat is a pointer?
An array name contains base address of the array. Can we change the base address of the array?
What is volatile keyword in c?
Heyyy All, Just a challenge . A C program with if Else if(){ /// insert sumthing print ("in if") // insert sumting } else { ///// insert sumthing print ("in else"); //// insert sumthing } can anyone modify it so that program prints. if and else both
HOW TO SWAP TWO NOS IN ONE STEP?
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
struct node {struct node*temp,*new} prinf("%d",sizeof(struct node));
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none