Explain what are linked list?
No Answer is Posted For this Question
Be the First to Post Answer
Without using main fn and semicolon,print remainder for a given number in C language
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
What is a pragma?
Why main is not a keyword in c?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
2 Answers HCL, IBM, Satyam, Vimal, Vimukti Technologies,
What are operators in c?
How is = symbol different from == symbol in c programming?
What is indirection? How many levels of pointers can you have?
Is calloc better than malloc?
How can I generate floating-point random numbers?
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
What is the difference between constant pointer and constant variable?