How do you list files in a directory?
No Answer is Posted For this Question
Be the First to Post Answer
What are the types of i/o functions?
How to add two numbers without using arithmetic operators?
18 Answers College School Exams Tests, e track, Infosys, Pan Parag, Sapient, TCS,
Explain how do you print an address?
c program for searching a student details among 10 student details
What is the difference between printf and scanf in c?
How the processor registers can be used in C ?
the maximum width of a c variable name can be a) 6 characters b) 8 characters c) 10 characters d) 20 characters
What is the difference between %d and %*d in C
What are called c variables?
Explain what standard functions are available to manipulate strings?
#include<string.h> void main() { String s1[]={"swathi"}; string s2[]={"maddimsetti"}; s1[]=s[]; printf("%s",s1[]); }
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....