What is function and its example?
What is the use of structure padding in c?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
What is scanf_s in c?
write a program to convert a expression in polish notation (postfix) to inline (normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
What standard functions are available to manipulate strings?
Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….
What does nil mean in c?
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
write the program for prime numbers?
73 Answers Accenture, Aptech, Infosys, TCS,
Write a C program to multiply tho numbers without using arithmetic operator (+, -, *, /).