how can i include my own .h file EX:- alex.h like
#include<alex.h>, rather than #include"alex.h"
what are the stages of compilation
Explain what will the preprocessor do for a program?
What is the sizeof () a pointer?
Difference between strcpy() and memcpy() function?
What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }
what is the difference between postfix and prefix unary increment operators?
Find the output? void main() {float a=2.0; printf("\nSize of a ::%d",sizeof(a)); printf("\nSize of 2.0 ::%d",sizeof(2.0));}
11 Answers IBM, TCS,
how many times of error occur in C
consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none
what is c++ programming?
Dont ansi function prototypes render lint obsolete?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?