Explain what are the standard predefined macros?
No Answer is Posted For this Question
Be the First to Post Answer
To find whether a number is even or odd without using any conditional operator??
12 Answers College School Exams Tests, IBM,
#include<stdio.h> { printf("Hello"); } how compile time affects when we add additional header file <conio.h>.
What is the purpose of ftell?
Q.11 Generate the following pattern using code in any language(c/c++/java) for n no. of rows 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
The statement, int(*x[]) () what does in indicate?
which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;
My teacher ask to make a program that can: Insert record in front Insert record at the end Insert in between Search node record Delete record in front Delete record at the end Delete record in between Using Data structure Linked List type. But I'm really confused about the codes and I can't go through. Please help Thanks in advance. Also here is my unfinished code if someone can make changes it will be more good.
What is the use of linkage in c language?
Write a program to check whether a number is prime or not using c?
Explain the difference between #include "..." And #include <...> In c?
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }