Explain how do you list a file’s date and time?
No Answer is Posted For this Question
Be the First to Post Answer
write a prgram of swapping with 2 valiables
what will be the out put. #include<stdio.h> void main() { printf("Output:"); printf(1+"vikashpatel"); }//output: ikashpatel
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
Define C in your own Language.
can anyone suggest some site name..where i can get some good data structure puzzles???
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
Why is c faster?
Prove or disprove P!=NP.
please tell me the logic for this C program : INPUT (string):ABCD OUTPUT :BCDA CDAB DABC
Is c procedural or object oriented?
a=5 a=a++/++a
Here is alphabets : abcdefgh 1) how to reverse. as hgfedcba 2) after reversal, how to group them in a pair hg fe dc ba.