What is scope and lifetime of a variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail
explain what is a newline escape sequence?
what is pointer?
write a 'c' program to sum the number of integer values
Do you know what is the purpose of 'extern' keyword in a function declaration?
What is the use of bit field?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
write a function for strtok()??
List the difference between a "copy constructor" and a "assignment operator"?
count the numbers between 100 and 300, that star with 2 and ends with 2
yogesh patil in dell
What are bitwise shift operators in c programming?