Is sizeof a keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is a program flowchart?
What is function pointer and where we will use it
What is #define used for in c?
How to declare a variable?
What is wrong with this declaration?
Write a program to exchange two variaables without temp
Find Index of least significant bit set in an Integer. ex. int value is say 10001000 results should be 4.
Is javascript based on c?
why programs in c are running with out #include<stdio.h>? some warnings are display in terminal but we execute the program we get answer why? eg: main() { printf("hello world "); }
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }
what is the difference between static variable and register variable?