Search
 
SCRIPT & CODE EXAMPLE
 

CPP

hackerEarth questions Siemens

#include<stdio.h>

int main()
{
    int c[ ]={2.8,3.4,4,6.7,5};
    int j, *q=c;
    for(j=0;j<5;j++)
    {
        printf("%d ",*c);
        ++q;
    }
    return 0;
}
Comment

PREVIOUS NEXT
Code Example
Cpp :: PCL normal specific point 
Cpp :: How to execute a command and get return code stdout and stderr of command in C++ 
Cpp :: Nested ternary operator C++ 
Cpp :: find node from pos linkedlist c++ 
Cpp :: file transfer socat 
Cpp :: C++ std::ofstream class members 
Cpp :: what does npl mean? 
Cpp :: how to use #define c++ 
Cpp :: fishes code in assignment expert 
Cpp :: C++ meaning :: 
Cpp :: c++ abs template 
Cpp :: enqueue function with linked list implementation in c++ 
Cpp :: semi colon in argument list c++ 
Cpp :: cannot access base class members 
Cpp :: new lien c++ 
Cpp :: can map return a value to a variable in c++ 
Cpp :: cpp practice questions 
Cpp :: check if number is positive or negative in cpp 
Cpp :: result += a +b in c++ meaning 
Cpp :: draw point sfml 
Cpp :: MPI_Sendrecv 
Cpp :: convert "c++ to c" code online 
Cpp :: 16630147 
Cpp :: In-range Adder 
Cpp :: npm wasm 
Cpp :: bitmap rotate 90 deg 
Cpp :: is vowel c++/c 
Cpp :: delete node in a linked list leetcode 
Cpp :: c++ create vector of size 
Cpp :: combination sum iv leetcode 
ADD CONTENT
Topic
Content
Source link
Name
8+5 =