Hye Iam executing nmake through cmd prompt , after giving cmd nmake i got error .\include\extnargs.mak<271> : fatal error U1023 :syntax...
Iam compiling my project but it showing this error NMAKE : fatal error U1064: MAKEFILE not found and no target specified Does anyone have...
Iam comipliing my project but it showing this error NMAKE : fatal error U1064: MAKEFILE not found and no target specified Does anyone...
Hye iam facing an error i.e. Error 6 error C2143: syntax error : missing ')' before 'type' Error 7 error C2059: syntax error : ') CODE is...
Why the sizes of the data types precisely defined?
Hye iam facing problem Iam using IDE Source Insight . I have lot of file & folder having c source file as well as makefile. All the makefile are...
#define KS(p) ks((void *)&p) Can anyone explain me what this macro is doing
Can anyone tell me How do we link RTOS program with our application code .Just a general information
If i declare a function as static what will happen
main() { int x=10 ,y=20,z=5 ,i; i=x<y<z; printf("%d",i); } output :1 why the output is 1 ,how x ,y ,z are gettting compared
#include<stdio.h> main() { static int a[20]; int i=0; a[i]=i++; printf("%d %d %d",a[0],a[1],i); } output : 0 0 1 My question is...
Iam facing one problem.A Macro INIT_ON whose value is #define INIT_ON (*((unsigned char *)0x70060000) & 0x80) what is this value doing
Hi I am using Source Insight ,C/C++complier I have no idea about make files ,i have to compile one code ,but while compiling an error is...
PDEV *get_dfprt(register mydnum flx) { u_short ctr; DUPNUM *dptr = &GDFNUM[0]; for(ctr=0;ctr<DFNUM_EN;ctr++,dptr++) { if(dptr->num ==...
struct _finddata_t c_file; char hFile; char FilePath[]="D:/ut.txt"; hFile = _findfirst( FilePath, &c_file ); system (FilePath); In the...
int i=10; const int ci=123; const int *cpi; int *ncpi; cpi=&ci; printf("Main cpi %d\n",*cpi); ncpi=&i; printf("Main ncpi...
main() { const int Men = 10; int *Women = &Men; *Women = 20; printf("There are %d men\n", Men); } I havent include...
hye can anyone give me the example of memset function
want to print the sum of M to N numbers ,using pointer .Where am i getting wrong { int m,n; int *p1,*p2,sum=0,*p; printf("Enter the m");...
Separate names with a comma.