What do you mean by command line argument?
No Answer is Posted For this Question
Be the First to Post Answer
Tell me the use of bit field in c language?
Explain how can I remove the trailing spaces from a string?
Explain what is the difference between text files and binary files?
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output
Explain how to reverse singly link list.
write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?
What does printf does?
can any one tel me wt is the question pattern for NIC exam
What are the parts of c program?
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?
How can I allocate arrays or structures bigger than 64K?