What is a pointer and how it is initialized?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between realloc() and free()
How is null defined in c?
Write a Program to accept different goods with the number, price and date of purchase and display them
1. Write a C program to count the number of occurrence of a specific word in the given strings. (for e.g. Find how many times the word “live” comes in the sentence “Dream as if you’ll live forever, live as if you’ll die today ”)
How to add two numbers without using arithmetic operators?
18 Answers College School Exams Tests, e track, Infosys, Pan Parag, Sapient, TCS,
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
what is the use of #pragma pack, wer it is used?
Write a program for deleting duplicate elements in an array
what different between c and c++
What is the difference between local variable and global variable in c?
in linking some of os executables are linking name some of them
Can two or more operators such as and be combined in a single line of program code?