What is #line used for?
No Answer is Posted For this Question
Be the First to Post Answer
What is a Genralised LInked List?? Please give a detailed explation of it..
what is difference between declaring the pointer as int and char in c language?
How to add two numbers without using semicolon at runtime
How can I run c program?
can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?
which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )
How can I convert integers to binary or hexadecimal?
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
What is sizeof int in c?
pointer_variable=(typecasting datatype*)malloc(sizeof(datatype)); This is the syntax for malloc?Please explain this,how it work with an example?
2 Answers eClerx, Excel, kenexa,
main() { int i,n=010; int sum=0; for(i=1;i<=n;i++) {s=s+i; } printf("%d",&s); getch(); }
How can I copy just a portion of a string?