What is the use of a static variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program which take a integer from user and tell whether the given variable is squar of some number or not. eg: is this number is 1,4,9,16... or not
What is the difference between null pointer and the void pointer?
what is the difference between #include<stdio.h> and #include"stdio.h" ?
what is the difference between #include<stdio.h> and #include "stdio.h" ?
what is the output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(ā %d\nā,sum); } what is the difference between a=10 and a=010??
Do you know the purpose of 'register' keyword?
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
Can we write a program without main() function?
how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help
what is dangling pointer?
write a program to fined second smallest and largest element in a given series of elements (without sorting)
Write a program in c to input a 5 digit number and print it in words.