Explain what is #line used for?
No Answer is Posted For this Question
Be the First to Post Answer
Define the scope of static variables.
What is the argument of a function in c?
How would you obtain the current time and difference between two times?
int i=0,j; j=++i + ++i ++i; printf(" %d",j);
Why n++ execute faster than n+1 ?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
write a program to display & create a rational number
main() {char a[10]={1,2,3,4,5,6};int x; for(x=0;x<4;x++){ b[x]=x+'a';} printf("%s",b);}
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram.
What will be the result of the following program? main() { char p[]="String"; int x=0; if(p=="String") { printf("Pass 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } else { printf("Fail 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } } a) Pass 1, Pass 2 b) Fail 1, Fail 2 c) Pass 1, Fail 2 d) Fail 1, Pass 2 e) syntax error during compilation
How to compare array with pointer in c?