marge linklist
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to produce the following output in c language? 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
What is the difference between arrays and pointers?
What is hash table in c?
what is the difference between char * const and const char *?
What is the relationship between pointers and data structure?
#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 can i include my own .h file EX:- alex.h like #include<alex.h>, rather than #include"alex.h"
void main() { int a=1; while(a++<=1) while(a++<=2); }
How to write a program to receive an integer & find its octal equivalent by using for loop?
What is structure padding & expalain wid example what is bit wise structure?
What are .h files and what should I put in them?
what is the little endian and big endian?