What is c value paradox explain?
No Answer is Posted For this Question
Be the First to Post Answer
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
Write a program to find the number of times that a given word(i.e. a short string) occurs in a sentence (i.e. a long string!). Read data from standard input. The first line is a single word, which is followed by general text on the second line. Read both up to a newline character, and insert a terminating null before processing. Typical output should be: The word is "the". The sentence is "the cat sat on the mat". The word occurs 2 times.
#include<stdio.h> main() { int i=5; printf("%d",i*i-- - --i*i*i++ + ++i); } tell the answer with correct reason .specially reason is important nt answer ans by turbo c is -39
Write a function in c to find the area of a triangle whose length of three sides is given.
write a program without using main function?
c program to manipulate x=1+3+5+...+n using recursion
create an SINGLE LINKED LISTS and reverse the data in the lists completely
why in C,C++'s int size is 2 byte and .net(c#) int Size is 4 byte?
Why ordinary variable store only one value
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }
What is typedef struct in c?
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"