What is the difference between array and pointer?
No Answer is Posted For this Question
Be the First to Post Answer
What is the real difference between arrays and pointers?
27 Answers Hexaware, Logic Pro, TCS,
Explain how can you tell whether a program was compiled using c versus c++?
#define DCHAR char* typedef char* TCHAR; if using these following variables will be declared like DCHAR ch1, ch2; TCHAR ch3, ch4; then what will be types of ch1, ch2, ch3 and ch4?
how to find anagram without using string functions using only loops in c programming
/*program to calculate hra,da in salary if salary less than 10000 then hra15%,da13% otherwise hra20%,da18%/*
Why is structure padding done in c?
write function to reverse char array ... without using second array
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
How are strings stored in c?
Explain what is output redirection?
If the static variable is declared as global, will it be same as extern?
What is else if ladder?