what will be the out put.
#include<stdio.h>
void main()
{
printf("Output:");
printf(1+"vikashpatel");
}//output: ikashpatel
Why can't I perform arithmetic on a void* pointer?
What is function in c with example?
How to print %d in output
what is the different between data structure and data type?
what are the files which are automatically opened when a c file is executed?
int x=sizeof(!5.856); What will value of variable x?
What is pass by value in c?
Is file a keyword in c?
SIR PLS TELL ME THE CODE IN C LANGUAGE TO PRINT THE FOLLOWING SERIES 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1 1 2 3 2 1 1 2 1 1
write a program to print %d ?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
How do we select the big element or any other operation from array which is read dynamically. user need to give the elements only no need to mention the size.