Can two or more operators such as
and be combined in a single line of program code?
Can we declare function inside main?
Write a program to add the following ¼+2/4+3/4+5/3+6/3+... (Like up to any 12 no.s)
Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 1. Print only the alphabets . If in upper case print in lower case vice versa.
without a terminator how can we print a message in a printf () function.
main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 Answers NDS, TCS,
Write a function to find the area of a triangle whose length of three sides is given
Can the “if” function be used in comparing strings?
in C-programming language without using printf statement can we get output r not ? if yes how and if no also how ?
what's the return value of malloc()
What is volatile in c language?
How many data structures are there in c?
How can I prevent another program from modifying part of a file that I am modifying?