Why is structure padding done in c?
No Answer is Posted For this Question
Be the First to Post Answer
State the difference between realloc and free.
Is that possible to add pointers to each other?
What is a global variable in c?
What is the relationship between pointers and data structure?
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.
if the address of a[1,1] and a[2,1] are 1000 and 1010 respectively and each occupies 2 bytes then the array has been stored in what order?
4 Answers Amazon, Apple, Bata, Google, NASA,
Write a c program to print the even numbers followed by odd numbers in an array without using additional array
Why c is procedure oriented?
1 1 2 1 2 3 1 2 3 4 1 2 3 1 2 1 generate this output using for loop
Do array subscripts always start with zero?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
How can I ensure that integer arithmetic doesnt overflow?