What is null in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is function prototype in c with example?
main() { int i=400,j=300; printf("%d..%d"); }
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }
12 Answers Capital IQ, Sasken,
What are inbuilt functions in c?
struct node {struct node*temp,*new} prinf("%d",sizeof(struct node));
when to use : in c program?
How to declare a variable?
shorting algorithmS
2. Counting in Lojban, an artificial language developed over the last fourty years, is easier than in most languages The numbers from zero to nine are: 0 no 1 pa 2 re 3 ci 4 vo 5 mk 6 xa 7 ze 8 bi 9 so Larger numbers are created by gluing the digit togather. For Examle 123 is pareci Write a program that reads in a lojban string(representing a no less than or equal to 1,000,000) and output it in numbers.
int *p=20; if u print like dis printf("%d",p); o\p:- 20; how is it possible? plz give me the explanation.