How do you access command-line arguments?
please give code for this 1 2 4 7 11 16
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Explain what is the difference between null and nul?
When should a type cast not be used?
What's the difference between constant char *p and char * constant p?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
Is c# a good language?
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"
Explain about block scope in c?
C language questions for civil engineering
1.Why do you call C is middle level language? 2.Why do you call C is userfriendly language.
what is difference between getchar,putchar functions and printf and scanf function? does putchar show output only when input given to it