Explain how do I determine whether a character is numeric, alphabetic, and so on?
No Answer is Posted For this Question
Be the First to Post Answer
What are the rules for the identifier?
Can 'this' pointer by used in the constructor?
which is faster execution: loops or recursion?
Write a program to find the biggest number of three numbers in c?
How to write the code of the program to swap two numbers with in one statement?
why division operator not work in case of float constant?
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;
Is it better to use a macro or a function?
regarding the scope of the varibles;identify the incorrect statement: a.automatic variables are automatically initialised to 0 b.static variables are are automatically initialised to 0 c.the address of a register variable is not accessiable d.static variables cannot be initialised with any expression
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
Do you know what are bitwise shift operators in c programming?